Skip to content

ashleyvernon/intro-to-python-for-data-science

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to the wonderful world of Python!

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.

  1. Install Python
  2. Install virtualenv
  3. Install virtualenvwrapper or virtualenvwrapper-win
  4. Create a virtual environment

1. Install Python

Windows

Mac

2. Install virtualenv

$ pip install virtualenv

3. Install virtualenvwrapper or virtualenvwrapper-win

virtualenv wrappers make it easy to manage multiple environments and can make iterating on project easy.

Windows

Mac

Linux

Still Having Issues? Here's another helpful guide

4. Create a virtual environment

$ mkvirtualenv helloworld

cd into root of project

$ setprojectdir .

$ deactivate

$ workon helloworld

5. Install a package

We're going to install requests

$ pip install requests

Order We'll Cover:

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 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%