If I do pip install -r requirements.txt on clean venv then I get an installation error. The error can be fixed by preinstalling wheel (pip install wheel before the former command).
Virtualenv was created by python3 -m venv venvdirname on a regular ubuntu installation.
If I do
pip install -r requirements.txt
on clean venv then I get an installation error. The error can be fixed by preinstalling wheel (pip install wheel
before the former command).Virtualenv was created by
python3 -m venv venvdirname
on a regular ubuntu installation.