About 418,000 results
Open links in new tab
  1. 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 …

  2. How to install a new python module on VSCode? - Stack Overflow

    Aug 1, 2019 · I'm trying to install new python modules on my computer and I know how to install through the terminal, but I wish to know if there is a way to install a new module directly …

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

  4. How to install Python packages for a VS Code virtual environment?

    Apr 5, 2023 · 3 When I follow the command in the VS Code Python tutorial to install a package in the virtual environment, the script only runs successfully using the global interpreter, not the …

  5. python - How do I install a library permanently in Colab ... - Stack ...

    Mar 20, 2019 · In Google Colaboratory, I can install a new library using !pip install package-name. But when I open the notebook again tomorrow, I need to re-install it every time. Is there a way …

  6. How can I Install a Python module with Pip programmatically …

    I need to install a package from PyPI straight within my script. Is there maybe some module or distutils (distribute, pip, etc.) feature which allows me to just execute something like pypi.install('

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

  8. How to install Python packages for Spyder - Stack Overflow

    May 21, 2023 · I am using the IDE called Spyder for learning Python. I would like to know in how to go about in installing Python packages for Spyder?

  9. How to install multiple python packages at once using pip

    Mar 31, 2012 · I know it's an easy way of doing it but i didn't find it neither here nor on google. So i was curious if there is a way to install multiple packages using pip. Something like: pip install …

  10. What is the best way to manually install a python library?

    Jan 7, 2025 · The best way to manually install a Python library during development is indeed to use pip install . or pip install -e . in the library's root directory. The method you described - …