diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-27 11:09:33 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-27 11:09:33 +0200 |
commit | 4d8236948248423aaa8ea80edb2063bbf76591e2 (patch) | |
tree | ae22c85fdf9ba86181204c1406893c1e280d375c | |
parent | oups (diff) | |
download | newspipe-4d8236948248423aaa8ea80edb2063bbf76591e2.tar.gz newspipe-4d8236948248423aaa8ea80edb2063bbf76591e2.tar.bz2 newspipe-4d8236948248423aaa8ea80edb2063bbf76591e2.zip |
Fixed install.sh script.
-rwxr-xr-x | install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -18,12 +18,13 @@ wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tar.xz -o /dev/null > tar -xf Python-3.5.2.tar.xz > /dev/null rm Python-3.5.2.tar.xz > /dev/null cd Python-3.5.2/ +export PYTHONHOME=/usr/local export LD_RUN_PATH=/usr/local/lib/ ./configure --enable-loadable-sqlite-extensions --enable-shared > /dev/null make > /dev/null sudo make install > /dev/null cd .. -rm -Rf Python-3.5.2/ +sudo rm -Rf Python-3.5.2/ echo "Installing required Python libraries..." |