How to Create a Virtualenv in Python Without Bullshit
2017 Jun 27Via Eiti Kimura. Straight to the point: 1) Install virtualenv via pip [code language=”python”] $ pip install virtualenv [/code] 2) Define your directory [code language=”python”] $ mkdir deep-learning-virtual-env [/code] 3) After defining the directory, navigate into it [code language=”python”] $ cd deep-learning-virtual-env [/code] 4) Initialize your virtualenv [code language=”python”] $ virtualenv . [/code] 5) Activate your virtualenv [code language=”python”] $ source bin/activate [/code] 6) To make your work easier, we’ve even created a requirements file with Theano, Keras, Jupyter Notebook, and Scikit-Learn. To install them, just run the following command: [code language=”python”] $ pip install -r requirements.key [/code] requirements.key