Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install a package for different Python versions in Anaconda?

I have Python 2.7 as root. I need to install the package "statistics" in Python 3.6, and it is not in the environments of anaconda navigator. How can install "statistics" with conda or pip for a secondary Python environment?

like image 643
Eduardo Bocarruido Avatar asked Apr 30 '17 14:04

Eduardo Bocarruido


Video Answer


1 Answers

Create a new Python 3 environment by running:

conda create --name python3 python=3

If you want all the standard anaconda packages installed by default, do:

conda create --name python3 python=3 anaconda

Whenever you need to use python3 run:

activate python3

Then use the command line as normal. So, if you want to install something into your python3 environment, make sure you activate python3 first.

Note that python 3 has it's own statistics module that you may find useful, and this module has been ported to python 2 if you would prefer.

like image 173
Ari Cooper-Davis Avatar answered Sep 29 '22 16:09

Ari Cooper-Davis