Re: Preferred virtualenv layout for Django projects

2013-10-17 Thread Tom Evans
On Thu, Oct 17, 2013 at 4:26 PM, Tim Chase wrote: > How do folks prefer to layout their Django projects when using > virtualenv? Do you do either of the following, or something else? > > Method 1: (project & apps at same level) > > ~/tmp$ virtualenv my_proj > ~/tmp$ cd my_proj > ~/tmp/my_proj$ .

Re: Preferred virtualenv layout for Django projects

2013-10-17 Thread Some Developer
On 17/10/2013 16:26, Tim Chase wrote: How do folks prefer to layout their Django projects when using virtualenv? Do you do either of the following, or something else? Method 1: (project & apps at same level) ~/tmp$ virtualenv my_proj ~/tmp$ cd my_proj ~/tmp/my_proj$ . bin/activate (my_proj)~/t