An Integrated Development Environment (IDE) is an application that facilitates application development. In general, an IDE is a graphical user interface (GUI)-based workbench designed to aid a developer in building software applications with an integrated environment combined with all the required tools at hand. Most common features, such as debugging, version control and data structure browsing, help a developer quickly execute actions without switching to other applications
PyCharm is an IDE used in computer programming, specifically for the Python language. This can be downloaded from here.
There are two editions of PyCharm that you can use: the Community one, that is open-source and the Professional one that can pe used for both scientific and web Python development. You can use your @info.uaic.ro mail address to obtain an Education License to use the Professional edition.
These edition can be installed on Windows, Linux or MacOS
After the download is complete, you may start the installation. At the end, launch the PyCharm
Obs: Your colors and font may differ
The first step is to choose between "Creating" a project or "Open" an existing one.
In the next step, we need to set a location for the project that will be created, choose an "Existing Interpreter" and then "Create" it. (If there are no interpreters available, you may need to install one from here)
To create the first script, right-click on the project directory and select a "New" Python File (or press Alt + Insert)
To Run a script, you may right-click on the script and select the "Run" option (or press Ctrl + Shift + F10). The output will pe shown in a box bellow.
These steps, achieve the same result as this tutorial.