aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-27 11:09:33 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-27 11:09:33 +0200
commit4d8236948248423aaa8ea80edb2063bbf76591e2 (patch)
treeae22c85fdf9ba86181204c1406893c1e280d375c /install.sh
parentoups (diff)
downloadnewspipe-4d8236948248423aaa8ea80edb2063bbf76591e2.tar.gz
newspipe-4d8236948248423aaa8ea80edb2063bbf76591e2.tar.bz2
newspipe-4d8236948248423aaa8ea80edb2063bbf76591e2.zip
Fixed install.sh script.
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 1487feda..20444252 100755
--- a/install.sh
+++ b/install.sh
@@ -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..."
bgstack15