Latest Post

Mac OS X Lion: The perfect setup for Python / Django

If like me, you are developing Django applications on a Mac, you will probably face a few issues when upgrading to Lion. In my case, I haven’t even upgraded, I decided to wipe it all out and start from a [...]

Python – Virtualenv – Modwsgi – Django on Rackspace cloud server running Ubuntu 10

Install Virtualenv: 1apt-get install python-virtualenv Install Apache mod_wsgi: 1apt-get install libapache2-mod-wsgi Create a folder called pythonenv under /usr/local/, then go to it: 12mkdir /usr/local/pythonenv cd /usr/local/pythonenv Create the virtrual env: 1virtualenv –no-site-packages Download and Install Django, and copy it to [...]