For windows
The first step is to create a new conda environment. The conda environment is similar to virtualenv, which allows you to specify a specific version of Python and a set of libraries. Run the following commands from the terminal window:
conda create -n name_of_my_env python
This will create a minimal environment in which only Python will be installed. To put yourself in this environment, run:
source activate name_of_my_env
On Windows, the command looks like this:
activate name_of_my_env
The last necessary step is to install pandas. This can be done using the following command:
conda install pandas
To install a specific version for pandas:
conda install pandas=0.20.3
To install other packages, for example IPython:
conda install ipython
To install the full Anaconda distribution:
conda install anaconda
If you need packages available for pip but not conda, install pip and then use pip to install these packages:
conda install pip pip install django
source share