I had install virtualenv, created a venv by virtualenv since last month but now I can't create other env. In Ubuntu 20.04 terminal, I had tried:
$virtualenv my_env
But its result is
ModuleNotFoundError: No module named 'virtualenv.seed.embed.via_app_data'
After that, I checked its version:
$virtualenv --version
and get:
virtualenv 20.0.17 from /usr/lib/python3/dist-packages/virtualenv/__init__.py
I also checked it by $pip3 list and virtualenv still exists. It seem that problem came after I had install Anaconda.
@yushulx I also ran into the same issue. I installed both via pip3
and via sudo apt install python3-virtualenv
and it gave me an error but after I ran pip3 uninstall virtualenv
I could create a virtualenv without issue
Try to create the virtual environment using directly venv module
python3 -m venv my_env
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With