We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
apt-get install python-virtualenv causes error
apt-get install python-virtualenv
Fix: Delete python-virtualenv from install.sh and add python3-pip into the same line. Then add following line: sudo pip3 install virtualenv
python-virtualenv
python3-pip
sudo pip3 install virtualenv
The text was updated successfully, but these errors were encountered:
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
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.
Sorry, something went wrong.
No branches or pull requests
apt-get install python-virtualenv
causes errorFix:
Delete
python-virtualenv
from install.sh and addpython3-pip
into the same line. Then add following line:sudo pip3 install virtualenv
The text was updated successfully, but these errors were encountered: