[Solved] How to fix pycharm Environment error while installing new packages [closed]


  1. no (at least not automagically … )
  2. Install python … install packages … make venv’s using --include_site_packages (pycharm makes this quite easy with their GUI create new venv thing)
  3. I think you must have some globally installed python that you can create venvs from
  4. pip is the python package manager, this is how you install python packages from the central repository (pypi)

the easiest way to install python is to type python in cmd.exe, this will take you to the windows store “install python” page, click the install button, when you are installing make sure you tell the installer to modify the PATH variable (its a checkbox that is at the end of the install prompts) … then open a new cmd.exe and type python if a shell opens you are done … if not you need to “Edit System Environmental variables”, once you can type python and get into the python shell then try python -m pip install numpy

solved How to fix pycharm Environment error while installing new packages [closed]