This is the version 5bb8b4b408367b37baaa5be0 from 2017-11-25 22:47:12 comment: 'first version'
virtualenv ed
Creating a "virtual" python environment.
Setup ed
Install virtualenv:
sudo pip install virtualenv
Create the environment:
mkdir ENV virtualenv ENV
Or, if you want to use a different python version:
virtualenv -p python3 ENV
Activate (making it the main environment in this shell):
source ENV/bin/activate
Install packages:
pip install PACKAGES
Categories: Programmieren, Computer