Merge pull request #245 from geo-lit/patch-1

Updated install.sh to pip install python venv
This commit is contained in:
George Hotz 2020-12-08 20:43:31 -08:00 committed by GitHub
commit 080e6b18fd
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
if [ $(which apt-get) ]; then
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
echo "*** You'll need to install Ubuntu or get a working build env for qemu and python yourself ***"
fi