Virtualenv not compatible with this system or executable

My limited undestanding is that my python interpreter and packages are managed under Anaconda using Conda package manager, and my virtualenv was originally installed using pip..

uninstalling virtualenv with pip and re-installing with conda fixed the issue

pip uninstall virtualenv

conda install virtualenv

Leave a Comment