1) I installed virtualenv using pip. 2) I ran the command virtualenv venv 3) Then I ran source venv/bin/activate but it says that there is no s
virtualenv venv
source venv/bin/activate
I solved the similar problem running python3.7 -m venv venv, you can change for your version of python that is installed in your enviroment.
python3.7 -m venv venv