Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions django_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,17 @@ where `C:\Python34\python` is the folder in which you previously installed Pytho
Creating a `virtualenv` on both Linux and OS X is as simple as running:

~/djangogirls$ python3 -m venv myvenv


> __NOTE:__ Initiating the virtual environment on Ubuntu 14.04 like this currently gives the following error:

> Error: Command '['/home/eddie/Slask/tmp/venv/bin/python3', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

> To get around this, use the `virtualenv` command instead.

> sudo apt-get install python-virtualenv
> ~/djangogirls$ virtualenv myvenv


## Working with virtualenv

Expand Down