virtualenv is advertised as another type of cordoned off environment for python. Similar to anaconda environments.
commands:
- virtualenv
- Creates dir
- virtualenv –clear
- virtualenv -p python3
- virtualenv testvirtualenv
- virtualenv –system-site-packages r-tensorflow
- creates directory r-tensorflow with virtualenv. The python in this environment will have access to the system python packages.
- virtualenv –system-site-packages mytensorflow
- virtualenv –no-pip
- virtualenv –extra-search-dir=SEARCH_DIRS
- directory to use to look for pip/setuptools/distribute
- activate
- source testvirtualenv/bin/activate
