From 327af611ca9e980f39e5611843eea49a008a4d8c Mon Sep 17 00:00:00 2001 From: haskal Date: Thu, 30 Jan 2020 18:33:11 -0500 Subject: [PATCH] add missing file --- scripts/setup.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 scripts/setup.sh diff --git a/scripts/setup.sh b/scripts/setup.sh new file mode 100755 index 0000000..f44ac51 --- /dev/null +++ b/scripts/setup.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +apt install -y curl +curl -O https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tar.xz +tar xf Python-3.6.8.tar.xz +cd Python-3.6.8 +export MAKEFLAGS=-j8 +echo "export LD_LIBRARY_PATH=/usr/local/lib" >> ~/.bashrc +./configure --enable-shared +make +make altinstall