-
lorsque j'installe les librairie il me met pip non reconnnu |
Beta Was this translation helpful? Give feedback.
Answered by
VyvaHart
Jul 15, 2024
Replies: 1 comment
-
This issue is the most common when you start to use python. Good Luck! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Nash115
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This issue is the most common when you start to use python.
From my point of view the best solution will be to reinstall python from main page: Download Python (i recommend 3.11 version). And before installation mark the checkbox "Add to PATH"
after that open terminal (press WIN+R -> type 'cmd') and type python --version. If the terminal gives you: Python 3.11.0 - all good
then try to install/upgrade pip: python -m pip install --upgrade pip
i hope it will work for you
Good Luck!