About 143,000 results
Open links in new tab
  1. How to install Python using Windows Command Prompt

    Feb 8, 2019 · To completely hide the installer UI and install Python silently, pass the /quiet option. To skip past the user interaction but still display progress and errors, pass the /passive option. The /uninstall option may be passed to immediately begin removing Python - …

  2. Install Python with cmd or powershell - Stack Overflow

    Sep 30, 2018 · The best way to install Python through Windows Command Prompt will be through Chocolatey (Windows Package Manageer). Steps to install python 3 will be as follows :-Open CMD using 'Run as Administrator'. Download and Install Chocolatey using the …

  3. python - How do I install pip on Windows? - Stack Overflow

    Go to a Python command line and run the below Python command. python -m pip install -U pip Installing with get-pip.py. Download get-pip.py in the same folder or any other folder of your choice. I am assuming you will download it in the same folder from where you have the python.exe file and run this command: python get-pip.py

  4. How do I install Python packages on Windows? - Stack Overflow

    Nov 24, 2014 · Run the command python setup.py install That worked for me when nothing else was making any sense. I use Python 2.7 but the documentation suggests that same would work for Python 3.x also.

  5. python - pip install returning invalid syntax - Stack Overflow

    Dec 4, 2017 · In this directory, search pip with python -m pip then install package. E.g. python -m pip install ipywidgets-m module-name Searches sys.path for the named module and runs the corresponding .py file as a script. OR. GO TO scripts from CMD. This is where Pip stays :) cd C:\Users\User name\AppData\Local\Programs\Python\Python37-32\Scripts> Then

  6. python - How to pip or easy_install tkinter on Windows - Stack …

    This should give you the Python command prompt. From the prompt, enter these two commands: >>> import tkinter >>> tkinter._test() This should pop up a small window; the first line at the top of the window should say "This is Tcl/Tk version 8.5"; make sure it is not 8.4! 2) Uninstall 64-bit Python and install 32 bit Python.

  7. python - How to install Flask on Windows? - Stack Overflow

    Assuming you are using Python 2.7 on the default path, add the following value:;C:\Python27\Scripts And you are done! To check that it worked, open the Command Prompt and execute easy_install. If you have User Account Control enabled on Windows Vista or Windows 7, it should prompt you for administrator privileges.

  8. Python: Pip command is not recognized - Stack Overflow

    Oct 14, 2012 · Open command prompt (right click windows start menu and click on "Command Prompt (Admin)" Use "cd" command to change directory to where python is installed, but go to your scripts folder (for me, this is cd C:\Program Files\PythonXX\Scripts where the XX is the version number of Python) Once in "Scripts" folder, type pip install cython and press ...

  9. 'Python not found' despite having been installed [duplicate]

    Feb 28, 2021 · Taking the time to first open a CMD or Terminal or PowerShell prompt and then navigating to the directory where your .py file is located is the magic fairy dust that makes python work at the command prompt level in Windows 11 (and probably all the way back to 8.1).

  10. 'python' is not recognized as an internal or external command

    Use Tools ‣ Find or hit the Search button and look for “python.exe”. Supposing you discover that Python is installed in the C:\Python27 directory (the default at the time of writing), you should make sure that entering the command. Then execute the Python command using the full path name to make sure that works.

Refresh