add missing file

This commit is contained in:
xenia 2020-01-30 18:33:11 -05:00
parent 77be104b1d
commit 327af611ca
1 changed files with 11 additions and 0 deletions

11
scripts/setup.sh Executable file
View File

@ -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