I can see pip inside site-packages with pycharm but when i run in control panel pip --version it answers me pip is not recognized as an internal or external command
-
use `python -m pip --version` – sahasrara62 Jun 04 '19 at 09:09
-
Possible duplicate of ['pip' is not recognized as an internal or external command](https://stackoverflow.com/questions/23708898/pip-is-not-recognized-as-an-internal-or-external-command) – phd Jun 04 '19 at 10:41
-
https://stackoverflow.com/search?q=%5Bpip%5D+not+recognized+as+an+internal+or+external+command – phd Jun 04 '19 at 10:42
2 Answers
If you are using Pycharm, you can add libraries in your specific project via the settings menu. You don't have to manually install them on your global site-packages folder.
In your PyCharm project, go to File > Settings > Project > Project Interpreter
Inside, click on the + sign and you will get to a window in which you can find and install basically every possible library you need.

- 65
- 3
- 10
when it says pip is not recognized
that means the location of the pip is not found. Try adding the location of the folder where the pip is present to the PATH in system environment variables (assuming you are using windows OS).
get-pip.py downloads the latest version of the pip from internet. So if you don't have working internet connection please download pip package from pypi https://pypi.org/project/pip/ and install.
Hope it helps.

- 152
- 1
- 11