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

    Nov 24, 2014 · 91 Newer versions of Python for Windows come with the pip package manager. (source) pip is already installed if you're using Python 2 >=2.7.9 or Python 3 >=3.4 Use pip to install packages …

  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 through VSCode (like …

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

    Jun 18, 2012 · 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 newly …

  5. How can I Install a Python module with Pip programmatically (from my ...

    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('

  6. 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 to install a li...

  7. 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 - building a wheel …

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

  9. 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?

  10. Install a module using pip for specific python version

    To install the module, first locate the folder in which that version of Python is located (Open a cmd window and type where python to list all paths for python installations), copy the path to the preferred …