These are the supporting files to my blog post found here: http://timmyreilly.com/python-introduction/
Supporting slides can be found here
#Setting Up your Dev Environment
Before we get started learning and buildling with Python we need to setup our development environment.
- Install Python
- Install virtualenv
- Install virtualenvwrapper or virtualenvwrapper-win
- Create a virtual environment
$ pip install virtualenv
virtualenv wrappers make it easy to manage multiple environments and can make iterating on project easy.
Still Having Issues? Here's another helpful guide
$ mkvirtualenv helloworld
cd into root of project
$ setprojectdir .
$ deactivate
$ workon helloworld
We're going to install requests
$ pip install requests