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

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.c