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

    Sep 5, 2017 · Another alternative is to use , e.g., winget install -e --id Python.Python.3.11. Should work out of the box in Windows 11 and modern installations of Windows 10 - according to the docs. The …

  2. Install Python with cmd or powershell - Stack Overflow

    Sep 30, 2018 · 31 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 …

  3. How to install Visual Studio Code extensions from Command line

    Dec 15, 2015 · To make it easier to automate and configure VS Code, it is possible to list, install, and uninstall extensions from the command line. When identifying an extension, provide the full name of …

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

    Dec 4, 2017 · I've just installed python 3.6 which comes with pip However, in Windows command prompt, when I do: 'pip install bs4' it returns 'SyntaxError: invalid syntax' under the install word. …

  5. Why does "pip install" inside Python raise a SyntaxError?

    399 pip is run from the command line, not the Python interpreter. It is a program that installs modules, so you can use them from Python. Once you have installed the module, then you can open the Python …

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

    Nov 24, 2014 · 152 I'm having a hard time setting up python packages. EasyInstall from SetupTools is supposed to help that, but they don't have an executable for Python 2.6. For instance to install …

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

    Run the following command: python get-pip.py, python3 get-pip.py or python3.6 get-pip.py, depending on which version of Python you want to install pip Pip should be now installed!

  8. CMD opens Windows Store when I type 'python' - Stack Overflow

    Nov 8, 2019 · So if you installed Python after a new Windows 10 install then get redirected to the Windows Store, it's because there are two python.exe's: The alias in the App Execution Alias page, …

  9. How do I install a Python package with a .whl file? - Stack Overflow

    Jan 11, 2015 · Then you can install the wheels for a specific Python version (if more than one are installed) and the Scripts directory doesn't have to be in the PATH. So open the command line, …

  10. python - How can I install packages using pip according to the ...

    Information on --no-index from command pip help install --no-index Ignore package index (only looking at --find-links URLs instead). Information on --find-links from command pip help install -f, --find-links …