How to install matplotlib for anaconda 1.9.1 and python 3.3.4?

I am configuring Anaconda 1.9.1 with Python 3.3.4, and I cannot configure Matplotlib for the anaconda environment when I try to add a package using Pycharm. I also tried installing from the Matplotlib.exe file, which I downloaded from his site. In this case, I cannot change the installation directory. I would like to know that there is a way to solve this problem.

+3
source share
3 answers

If you are using anaconda, your default environment is Python 2.7. You need to create a new environment and install matplotlib there.

At the command prompt, do the following (answer yes to the questions):

conda create --name mpl33 python=3.3 matplotlib ipython-notebook
activate mpl33
ipython notebook

You should be able to import matplotlib when the laptop server arrives.

  • .
  • ,
  • ipython-,

, pycharm, , , , . - : C:/Users//anaconda/envs/mpl33. .

, :

conda install pandas=0.12
conda install pyodbc statsmodels

, , , ( )

+4

, enx python 3.x anaconda, :
conda install matplotlib -n name
- , python 3 anaconda env. , , Anaconda\envs.

. , matplotlib anaconda, python 3 env, . ; , , , - , . , , .

: 2 :
        [u'dateutil-2.1-py33_2.tar.bz2 ', u'matplotlib-1.3.1-np18py33_1.tar.bz2', u'numpy-1.8.0-py33_0.tar.bz2 ', u'pyparsing-2.0. 1-py33_0.tar.bz2 ', u'pyside-1.2.1-py33_0.tar.bz2', u'python-3.3.5-0.tar.bz2 ', u'pytz-2013b-py33_0.tar.bz2 ', u'six-1.6.1-py33_0.tar.bz2']
        [u'dateutil-2.1-py33_2.tar.bz2 ', u'matplotlib-1.3.1-np17py33_1.tar.bz2', u'numpy-1.7.1-py33_3.tar.bz2 ', u'pyparsing-1.5. 6-py33_0.tar.bz2 ', u'pyside-1.2.1-py33_0.tar.bz2', u'python-3.3.5-0.tar.bz2 ', u'pytz-2013b-py33_0.tar.bz2 ', u'six-1.6.1-py33_0.tar.bz2' ]

+5
conda install -c conda-forge matplotlib
0
source

All Articles