Installing Plugins in PyCharm¶
Plugins offer extra functionality in addition to Python’s default packages. Next we will install plugins numpy and scipy. Installing is easiest by clicking the Terminal button on PyCharm and then writing pip install <plugin name>
, so in our case pip install numpy
and pip install scipy
.
Succesful install looks like this:
In addition to terminal, plugins can also be installed with a graphical user interface. Choose File -> Settings
In Settings choose your project and subsection Project Interpreter
In Project Interpreter menu, press the + button oto open Available Packages menu.
Write numpy in to the search box, and press the Install Package button to install plugin.