geohot / qira

QEMU Interactive Runtime Analyser
MIT License
3.92k stars 471 forks source link

install.sh fails due to unavailable python-virtualenv on Ubuntu #244

Open geo-lit opened 4 years ago

geo-lit commented 4 years ago

apt-get install python-virtualenv causes error

Fix: Delete python-virtualenv from install.sh and add python3-pip into the same line. Then add following line: sudo pip3 install virtualenv

FazalAAli commented 3 years ago

Follow up for someone else trying to install. After I did this, I also had to manually create a virtualenv and then install the requirements.

For that, I did: virtualenv venv source venv/bin/activate pip install -r requirements.txt

Apart from that, and the fact that this should be put into the readme, this issue should be okay to close.