Updated install.sh to pip install python venv

#244 solution
This commit is contained in:
George Litvinov 2020-07-09 00:50:37 -04:00 committed by GitHub
parent ec5f471ee8
commit 09ca66bd34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@
# install system deps # install system deps
if [ $(which apt-get) ]; then if [ $(which apt-get) ]; then
echo "installing deps for ubuntu" echo "installing deps for ubuntu"
sudo apt-get -y install git curl python python-virtualenv python-dev build-essential pkg-config zlib1g-dev libglib2.0-dev libpixman-1-dev sudo apt-get -y install git curl python python-dev python3-pip build-essential pkg-config zlib1g-dev libglib2.0-dev libpixman-1-dev
sudo pip3 install virtualenv
else else
echo "*** You'll need to install Ubuntu or get a working build env for qemu and python yourself ***" echo "*** You'll need to install Ubuntu or get a working build env for qemu and python yourself ***"
fi fi