I'm done with installing Pycharm, and throughout the wizard, there was a tickbox saying: add to PATH (restart required).
What extra benefit would I get from ticking that box?
I'm done with installing Pycharm, and throughout the wizard, there was a tickbox saying: add to PATH (restart required).
What extra benefit would I get from ticking that box?
Very short answer, somebody can provide details also I am not an expert.
If in windows, adding to path is like adding the program to the environment variables. This means, that instead of executing it to the full path where the .exe is you could call it with an "alias".
To run python, instead of going somewhere like C:/Program Files/Python/python.exe you could simply type "python".
I don't think PyCharm will want you to put itself in PATH (aside from the charm
helper maybe, which launches the IDE akin to subl
or code
for Sublime Text and Visual Studio Code respectively).
Having Python in PATH
(I recall the installer does ask that on Windows) will make it possible for you to run python
, pip
and the other tools from any directory when using the command line.