add missing file
This commit is contained in:
parent
77be104b1d
commit
327af611ca
|
@ -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
|
Loading…
Reference in New Issue