Re: PostrgreSQL Inside Virtualenv

2018-01-25 Thread bootcamprag
Thanks again. On Thursday, January 25, 2018 at 3:16:05 PM UTC-8, yingi keme wrote: > > Its a pip install. > > Yingi Kem > > > On 25 Jan 2018, at 8:50 PM, bootcamprag > wrote: > > > > Will that be a Pip install or from some other source? Thanks > > > > -- > > You

Re: PostrgreSQL Inside Virtualenv

2018-01-25 Thread yingi keme
Its a pip install. Yingi Kem > On 25 Jan 2018, at 8:50 PM, bootcamprag wrote: > > Will that be a Pip install or from some other source? Thanks > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Re: PostrgreSQL Inside Virtualenv

2018-01-25 Thread bootcamprag
Will that be a Pip install or from some other source? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post

Re: PostrgreSQL Inside Virtualenv

2018-01-25 Thread bootcamprag
Yingi Thanks for the info.. This is good to know... R Demayne -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To

Re: PostrgreSQL Inside Virtualenv

2018-01-25 Thread yingi keme
SQLite is fine when developing. But on production, it depends on the server you are going to host your site. Some hosting service like pythonanywhere.com already provides you with POSTgresql. All you need to do is install the database adapter(psycopg2) in your virtual environment. Yingi Kem

Re: PostrgreSQL Inside Virtualenv

2018-01-25 Thread bootcamprag
Hello I am new to this group. At what point do you install PostrgreSQL? Is it during the production phase? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: PostrgreSQL Inside Virtualenv

2018-01-25 Thread Antonis Christofides
Hello, as many people have said, you can't install PostgreSQL in a virtualenv (but you can install the Python package for connecting to PostgreSQL (such as psycopg2) in a virtualenv). Maybe my article virtualenv demystified could

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread johnf
I doubt it is possible to install Postgres into virtualenv??? At least I'm not aware that it can be done.  I'll do a little research and see if I can be done.  Of course it can be installed on VM. Johnf On 01/24/2018 02:25 AM, tango ward wrote: Noted. Thanks On Wed, Jan 24, 2018 at 5:56

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread tango ward
Noted. Thanks On Wed, Jan 24, 2018 at 5:56 PM, Avraham Serour wrote: > In any case you'll need to pip install the postgres drivers for python, I > suggest doing that inside the env > > > On Wed, Jan 24, 2018 at 11:32 AM, tango ward > wrote: > >> Got

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread Avraham Serour
In any case you'll need to pip install the postgres drivers for python, I suggest doing that inside the env On Wed, Jan 24, 2018 at 11:32 AM, tango ward wrote: > Got it. Thanks Anoosha > > On Wed, Jan 24, 2018 at 5:29 PM, 'Anoosha Masood Keen' via Django users < >

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread tango ward
Got it. Thanks Anoosha On Wed, Jan 24, 2018 at 5:29 PM, 'Anoosha Masood Keen' via Django users < django-users@googlegroups.com> wrote: > Install it on your computer. > > On Wednesday, January 24, 2018 at 8:49:17 AM UTC, tangoward15 wrote: > >> >> Hi, >> >> >> Newbie question, since I installed

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread 'Anoosha Masood Keen' via Django users
Install it on your computer. On Wednesday, January 24, 2018 at 8:49:17 AM UTC, tangoward15 wrote: > > > Hi, > > > Newbie question, since I installed django and pillow inside virtualenv, > shall I also install PostgreSQL inside Virtualenv? At the moment I am still > using SQLite in my pet

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread tango ward
Got it. Thanks Andréas On Wed, Jan 24, 2018 at 5:12 PM, Andréas Kühne wrote: > Hi, > > The virtualenv is only for python things (django, pillow, the postgres > connector). Postgres itself is a database server and needs to be installed > on the host that you want to

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread Andréas Kühne
Hi, The virtualenv is only for python things (django, pillow, the postgres connector). Postgres itself is a database server and needs to be installed on the host that you want to communicate with. It cannot be installed "only" in the virtualenv. Regards, Andréas 2018-01-24 9:59 GMT+01:00 tango

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread tango ward
Hi Anoosha, Thanks for the response. I'm just curious if the installation of PostgreSQL should be inside Virtualenv too or should it be installed directly into the computer. On Wed, Jan 24, 2018 at 4:55 PM, 'Anoosha Masood Keen' via Django users < django-users@googlegroups.com> wrote: > > Hi

Re: PostrgreSQL Inside Virtualenv

2018-01-24 Thread 'Anoosha Masood Keen' via Django users
Hi tangoward15. No need to install PostgreSQl at this stage. Just continue with the tutorial. SQLite works fine. On Wednesday, January 24, 2018 at 8:49:17 AM UTC, tangoward15 wrote: > > > Hi, > > > Newbie question, since I installed django and pillow inside virtualenv, > shall I also install

PostrgreSQL Inside Virtualenv

2018-01-24 Thread tango ward
Hi, Newbie question, since I installed django and pillow inside virtualenv, shall I also install PostgreSQL inside Virtualenv? At the moment I am still using SQLite in my pet project. Regards, Jarvis -- You received this message because you are subscribed to the Google Groups "Django users"