About 171,000 results
Open links in new tab
  1. How do I install Python packages on Windows? - Stack Overflow

    As I wrote elsewhere Packaging in Python is dire. The root cause is that the language ships without a package manager. Fortunately, there is one package manager for Python, called Pip. Pip is inspired …

  2. How do I install a pip package globally instead of locally?

    Apr 29, 2016 · Where does pip installations happen in python? I will give a windows solution which I was facing and took a while to solve. First of all, in windows (I will be taking Windows as the OS here), if …

  3. Install python modules/package using IDLE on Windows

    In Windows you should, like in Linux, use the command prompt to install your packages using pip. However, for this to work the Python executable must be in the system path.

  4. python - How to install packages offline? - Stack Overflow

    What's the best way to download a python package and its dependencies from pypi for offline installation on another machine? Is there any easy way to do this with pip or easy_install? I'm trying to

  5. python - Where does pip install its packages? - Stack Overflow

    May 1, 2015 · I activated a virtualenv which has pip installed. I did pip3 install Django==1.8 and Django successfully downloaded. Now, I want to open up the Django folder. Where is the folder located? …

  6. Install python modules on windows without admin rights

    Jul 24, 2018 · 7 I do not have admin rights on my work laptop. Have got python and pip installed on my machine, version numbers as below:

  7. Adding packages to Python "embedded" installation for Windows

    Then install modules from pip on normal python, go to NormalPython\Lib\site-packages and copy all new files that appear after installing the package to EmbeddedPython\Lib finally add Lib and Lib\site …

  8. Install a Python package into a different directory using pip?

    Installing a python package from somewhere else rather than from the default site-packages without using a virtual environment, you can use the --target or -t with pip install.

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

    Jan 11, 2015 · New Python users on Windows often forget to add Python's \Scripts directory to the PATH variable during the installation. I recommend to use the Python launcher and execute pip as a …

  10. python - How to install from requirements.txt - Stack Overflow

    Apr 1, 2021 · I have to install python packages from requirements files that's provided to me. However, when I use pip install -r requirements.txt command I get an error saying ERROR: Invalid requirement …