twoscoops / django-twoscoops-project

The sample project layout from the book, "Two Scoops of Django 1.5 and 1.6"
http://twoscoopspress.org
MIT License
873 stars 343 forks source link

mkvirtualenv directions slightly wrong ? #78

Open shearichard opened 10 years ago

shearichard commented 10 years ago

Might be my inexperience with virtualenvwrapper but I found the directions ...

$ mkdir icecream
$ mkvirtualenv -a icecream icecream-dev
$ cd icecream && add2virtualenv `pwd`

to be confusing as when I did my mkvirtualenv the directory icecream was created and made the current working directory - hence the cd to icecream on the next line was redundant.

Perhaps this is my non standard virtualenvwrapper configuration or perhaps virtualenvwrapper behaviour has chnaged ?

I'm using Python 2.7.3 on Ubuntu 12 and the venv packages are

virtualenv==1.11.4
virtualenv-clone==0.2.4
virtualenvwrapper==4.2
dashmug commented 10 years ago

Yes, I also think

$ mkdir icecream
$ mkvirtualenv icecream

is enough.