Using Anaconda

Post date: Dec 27, 2014 12:51:05 AM

There are lots of packages available in Anaconda: http://docs.continuum.io/anaconda/index.html

Install or update the packages in anaconda

If the package does not exist in your machine, it will install the package in your machine.

If the package exists already, the command will update the package to the latest version.

conda install <package name>

This commands will take care of all the dependencies for you too.

Create a python environment in Anaconda

This example shows how to create the virtualEnv for python2.7 named "py27" on your session.

conda create -n py27 python=2.7 anaconda