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

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

  6. How to install pandas from pip on windows cmd? - Stack Overflow

    82 Since both pip nor python commands are not installed along Python in Windows, you will need to use the Windows alternative py, which is included by default when you installed Python. Then you have …

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

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