Make sure python3 is installed
$ python3 -V
** Install and configure virtual env **
$ python3 -m venv env
$ pip3 install virtualenv
$ virtualenv --python=/usr/local/bin/python3 env
** Enter the virtual environment **
$ source env/bin/activate
** Escape from the virtual environment **
$ deactivate
Recommended Posts