Below you will find pages that utilize the taxonomy term “Python”
Blogs
Ubuntu 13.10 based Python/Django/WSGI setup
I am currently looking into the use of Django for one of my extra-curricular projects and needed to set up a development environment on Ubuntu. This is the log for future reference and hopefully useful for anybody needing to do the same.
Dependencies & Django Installation Core Dependencies & Django sudo apt-get install apache2 apache2-mpm-itk libapache2-mod-wsgi mysql-server python-django python-mysqldb
Optional add-ons For my purposes I need a few more additional modules
Blogs
Mongodb / Python development install on Ubuntu
Add apt repository key sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
Add apt repository sudo vim /etc/apt/sources.list.d/10gen.list<br></br>#add the following line:<br></br>deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen<br></br>
Install mongodb & python utils sudo apt-get update<br></br>sudo apt-get install mongodb-10gen python-pip python-dev build-essential<br></br>pip install pymongo