If you are using the conda python executable, use conda create --name {your_venv} python=3 (note that there is a virtualenv utility that comes with conda, but use conda create... to create new virtual conda create... anyway).
Otherwise, if you are using the python version installed by the system package manager, create a virtual env using virtualenv or, preferably, using the virtualenvwrapper mkvirtualenv . For example, on Linux, “system python” has the value /usr/bin/python3 , /usr/bin/python , /usr/bin/python2 , etc. Or, as it became clear, you are on MacOS, it will probably be python installed by brew (homebrew) or port (macports) in /opt or /usr/local . You may need to install virtualenvwrapper to get mkvirtualenv (and lsvirtualenv , etc.).
In short, if you are using python anaconda, stick with conda utils. Also, if you keep your python free and open (as many IT centers in your enclosure do), use any of various open utils like mkvirtualenv , etc.
source share