Python Forum
Problem installing numpy and matplotlib - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Problem installing numpy and matplotlib (/thread-15424.html)



Problem installing numpy and matplotlib - achondrite - Jan-16-2019

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?


RE: Problem installing numpy and matplotlib - snippsat - Jan-16-2019

(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