Re: How i connect my PostgreeSQL to a Django?

2011-04-28 Thread Flaviu Simihaian
Lucas,

Check this resource out: 
http://docs.djangoproject.com/en/1.3/intro/tutorial01/#database-setup

It's best to start with sqlite3 and make sure that works, then look at
installing PostgreSQL or MySQL.

I wrote a quick and dirty setup of Postgres on an OS X dev
environment: http://readncode.com/blog/set-up-postgresql-on-mac-os-quickly/

But it's no replacement for the comprehensive Postgres docs:
http://www.postgresql.org/docs/9.0/interactive/tutorial-start.html

-Flaviu

On Apr 27, 9:07 am, Web Lucas  wrote:
> well,
>
> I unnistall the PostgreeSQL and install MySQL
>
> you can help me with the configuration ?
>
> Thanks
>
> On 26 abr, 15:40, Shawn Milochik  wrote:
>
>
>
>
>
>
>
> > What error are you getting?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Installing Django on Ubuntu

2010-11-15 Thread Flaviu Simihaian
zalun,

I thought to get mkvirtualenv you have to install the
virtualenvwrapper shell commands:

$ pip install virtualenvwrapper
$ export WORKON_HOME=~/VirtualEnvs
$ mkdir -p $WORKON_HOME
$ source /usr/local/bin/virtualenvwrapper.sh

and then you can use it:
$ mkvirtualenv django --no-site-packages

I'm just following Doug Hellmann's installation guide:
http://www.doughellmann.com/docs/virtualenvwrapper/


Flaviu

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.