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

    Sep 5, 2017 · Is it possible to install Python from cmd on Windows? If so, how to do it?

  2. Install Python with cmd or powershell - Stack Overflow

    Sep 30, 2018 · 32 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. 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!

  4. 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 …

  5. python - How to run Pip commands from CMD - Stack Overflow

    Apr 23, 2015 · Otherwise, if this fails, you can look here to see how to install it. Now that you are sure you've got Pip, you can run it from CMD with Python using the -m (module) parameter, like this: > …

  6. Running Jupiter Lab via Command Line WIndows - Stack Overflow

    Feb 21, 2022 · Try in windows terminal: py -3.12 -m pip install jupyterlab Instead of version 3.12 put the python version you use. Close the terminal, go to the directory where you want to deposit your …

  7. 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. …

  8. python - How can I install NumPy on Windows using 'pip install ...

    I want to install NumPy using the pip install numpy command, but I get the following error: RuntimeError: Broken toolchain: cannot link a simple C program I'm using Windows 7 32 bit, Python 2.7.9,...

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

    Dec 26, 2024 · 400 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 …

  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 …