pip installation How to add pip to Correct PATH on WINDOWS 10 for Python 3.8
F3ND1MUS
pip installation how to add pip to PATH on WINDOWS 10 Python 3.8
THIS VIDEO PROVIDES A SOLUTION FOR THE FOLLOWING ERRORS:
fix SyntaxError: invalid syntax
File "stdin", line 1 pip install pyautogui
DIRECTIONS:
GO TO CONTROL PANELSystem and SecuritySystemAdvanced system settings Environment Variables Navigate to System variables window NOT User variables, but the second window down and DOUBLE CLICK Path.
Edit environment variable window will pop up, DOUBLE CLICK the
C:\Windows\System32\WindowsPowerShell\v1.0
and ADD ;C:\Python38;C:\Python38\Scripts to the end of it.
The final code should look like this:
C:\Windows\System32\WindowsPowerShell\v1.0;C:\Python38;C:\Python38\Scripts
hit enter, hit OK.
TEST PIP IN Command prompt. In command prompt type in pip hit enter. you should see the following: Usage: C:\Users\micha\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\python.exe -m pip command options
Commands: install Install packages. download Download packages. uninstall Uninstall packages. freeze Output installed packages in requirements format. list List installed packages. show Show information about installed packages. check Verify installed packages have compatible dependencies. config Manage local and global configuration. search Search PyPI for packages. wheel Build wheels from your requirements. hash Compute hashes of package archives. completion A helper command used for command completion. debug Show information useful for debugging. help Show help for commands.
General Options: -h, --help Show help. --isolated Run pip in an isolated mode, ignoring environment variables and user configuration. -v, --verbose Give more output. Option is additive, and can be used up to 3 times. -V, --version Show version and exit. -q, --quiet Give less output. Option is additive, and can be used up to 3 times corresponding to WARNING, ERROR, and CRITICAL logging levels. --log path Path to a verbose appending log. --proxy proxy Specify a proxy in the form user:passwd@proxy.server:port. --retries retries Maximum number of retries each connection should attempt default 5 times. --timeout sec Set the socket timeout default 1 ... https://www.youtube.com/watch?v=mm8AGCW2-YI
5232248 Bytes