How to activate a virtual environment in Ubuntu?
By Emma Terry •
I installed virtualenv and I created a virtual environment inside my directory. Everything is OK, but I can't activate it. When I run:
source /bin/activateit says:
already: command not foundScreenshot:
31 Answer
You need to install python3-venv:
sudo apt install python3-venvThen:
python3 -m venv vvv
source vvv/bin/activate