Python Forum

Full Version: Problem installing numpy and matplotlib
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!
I´m new to Python and I want to learn to plot charts in Python. But I have difficulties to install numpy and matplotlib. I use Pycharm and I have tried to install numpy and matplotlib with conda but I got error message when I try to run the script and numpa and matplotlib are not listed in when I write help ('modules') in the console. Can they be in the wrong folder and which folder should they be imported into?
(Jan-16-2019, 10:41 PM)achondrite Wrote: [ -> ]I use Pycharm and I have tried to install numpy and matplotlib with conda but I got error message when I try to run the script and numpa and matplotlib are not listed in when I write help ('modules') in the console.
conda is Anaconda's installer,pip is Python installer.
Do you use Anaconda or Python(python.org)?
Anaconda(1400+ packages),and numpy and matplotlib is pre-installed.
Also no need to install numpy and matplotlib as they already installed.

Python(python.org) you installed with pip.
# This install also numpy
pip install matplotlib
Even if Pycharm has tool for install,i would advice that you learn to do this from command line.
Have tutorials her:
Python 3.6/3.7 and pip installation under Windows
Anaconda and other ways to run Python