These are the supporting files to my blog post found here: http://timmyreilly.com/python-introduction/
#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
helloworld.py
sentence.py
user_input.py
first.py
lists.py
number_strings.py
function.py
dictionaries.py
formatting.py
random_practice.py
using_classes.py (person_class.py + employee.py)
file.py
exceptions
command_line_arguments.py
pandas.py
science.py