Re: Beginner question regarding virtualenv

2016-06-25 Thread Leo Vensel
Great advice from everyone glad I asked. Project dependencies file definitely! Thanks On Fri, Jun 24, 2016 at 10:45 AM, Nate Granatir wrote: > I've found that virtualenvs are definitely worth the time to set up, there > will be a time down the road when you need to have two different versions >

Re: Beginner question regarding virtualenv

2016-06-24 Thread Nate Granatir
I've found that virtualenvs are definitely worth the time to set up, there will be a time down the road when you need to have two different versions of the same package. Also, I'd strongly recommend storing the project's dependencies in a requirements.txt file. I have a terrible memory and would

Re: Beginner question regarding virtualenv

2016-06-23 Thread Tiglath Suriol
On Thursday, June 23, 2016 at 2:38:45 PM UTC-4, Leo wrote: > > Hey Everyone, > > > I’m a total newb to using Django and open stack. I am working on creating > a Django development environment in a VMware environment/Ubuntu OS. > Eventually I want to deploy this to production. The site’s purpos

Re: Beginner question regarding virtualenv

2016-06-23 Thread Mike Dewhirst
On 24/06/2016 4:36 AM, Leo wrote: Hey Everyone, I’m a total newb to using Django and open stack. I am working on creating a Django development environment in a VMware environment/Ubuntu OS. Eventually I want to deploy this to production. The site’s purpose is as an intranet site. I have

Re: Beginner question regarding virtualenv

2016-06-23 Thread Leo
Gary and Daniele, Looks like setting-up virtual environments is the way to go. Thanks for your help. I'm glad I asked before really digging in to serious development. Leo On Thursday, June 23, 2016 at 3:06:16 PM UTC-4, gary719_list1 wrote: > > On 06/23/2016 11:36 AM, Leo wrote: > Hi Leo, > > Th

Re: Beginner question regarding virtualenv

2016-06-23 Thread Gary Roach
On 06/23/2016 11:36 AM, Leo wrote: Hi Leo, The only problem with not using virtuaenv in your case is if you are still periodically updating your software. Since you are using the OS versions of python and django you are at the mercy of those upgrades. A switch from Django 1.8 to 1.9 could brea

Re: Beginner question regarding virtualenv

2016-06-23 Thread Daniele Procida
On Thu, Jun 23, 2016, Leo wrote: >I have been following the Django tutorial but recently discovered some >other Django tutorials which led me to posting this question. I didn't >create a Python vitrualenv rather installed everything at the root of the >OS. I am unsure if this will cause me pro

Beginner question regarding virtualenv

2016-06-23 Thread Leo
Hey Everyone, I’m a total newb to using Django and open stack. I am working on creating a Django development environment in a VMware environment/Ubuntu OS. Eventually I want to deploy this to production. The site’s purpose is as an intranet site. I have been following the Django tutorial