Uddipaan Hazarika
Uddipaan Hazarika

Reputation: 1

Matplotlib not installing in PyCharm with no error

Image of the console

I'm setting up my virtual environment and need the Matplotlib library. But when i try installing it using pip install matplotlib(or through the PyCharm IDE or by downloading the latest matplotlib.whl file) it says 'processing matplotlib.....' and exits the installation. I have been struggling with it since few months. And even tried with different laptops. Same problem.

PyCharm 2019.1.3 (Community Edition) Build #PC-191.7479.30, built on May 29, 2019 Windows 10 10.0

Python 3.7

Thanks.

Upvotes: 0

Views: 904

Answers (2)

elnaz nasiri
elnaz nasiri

Reputation: 165

You can go to this path for installing matplotlib or other lib on PyCharm, first go to this path file->settings->project interpreter-> find matplotlib and choose project interpreter and installed package successfully.

Upvotes: 1

subhojeetb
subhojeetb

Reputation: 28

You may try the following steps:

  1. Restore to default settings (optional)

    To restore the PyCharm default settings, you can remove the configuration directory idea.config.path when the IDE is not running. The directory is located in: SYSTEM DRIVE\Users\USER ACCOUNT NAME\.PRODUCT VERSION

  2. Then run this command in command prompt

    C:\Windows\System32>pip install matplotlib
    

    (considering default directory) I think this will install matplotlib SUCCESSFULLY!

Upvotes: 0

Related Questions