On Ubuntu 20.04.4 and python 3.8.10 my virtualenvwrapper
installation is broken. When I try
mkvirtualenv test
I get an error
ERROR: virtualenvwrapper could not find virtualenv in your path
for some reasons I am unable to install virtualenv
anymore, as I use
python -m venv myvenv
to create a virtualenv.
Is there some workaround? Maybe create an alias? Anything else?
In other words: How to make virtualenvwrapper work without virtualenv
installed? (I am not able to install virtualenv
to begin with. So please do not suggest to install that, as it does not work anymore).
virtualenvwrapper
and/ormkvenv
? I tried installing both withpip install virtualenvwrapper
andapt install virtualenvwrapper
and it works in both cases because both installation methods pullvirtualenv
as a dependency. – roadmr Jul 19 '22 at 16:37