From 9cf3ebcb7e448596c82d347deaafc4a2d78978c3 Mon Sep 17 00:00:00 2001 From: openoms Date: Wed, 8 May 2019 08:49:45 +0100 Subject: [PATCH] python 3.6 for first alternative --- build_sdcard.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build_sdcard.sh b/build_sdcard.sh index 8616cca..43dec12 100644 --- a/build_sdcard.sh +++ b/build_sdcard.sh @@ -548,8 +548,9 @@ fi # echo "" echo "*** LND API for Python ***" -sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 2 -sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1 +sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 3 +sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5 2 +sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 1 echo "to switch between python2/3: sudo update-alternatives --config python" sudo apt-get -f -y install virtualenv sudo -u admin bash -c "cd; virtualenv python-env-lnd; source /home/admin/python-env-lnd/bin/activate; pip install grpcio grpcio-tools googleapis-common-protos pathlib2"