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

    Nov 24, 2014 · pip is already installed if you're using Python 2 >=2.7.9 or Python 3 >=3.4. Use pip to install packages from the Python Package Index. cd C:\Python\Scripts\ pip.exe install …

  2. python - How to install a package inside virtualenv ... - Stack …

    The venv package is part of the Python standard library, though on some platforms (notably Debian and derived distros like Ubuntu and Mint) it has been split off to a separate package …

  3. How to pip install a local python package? - Stack Overflow

    Mar 1, 2017 · Uninstall the python package then install it using: python -m pip install -e c:\users\worker\src\clockwork\lib\credentials What is probably happening is that you have …

  4. python - How to install the os module? - Stack Overflow

    I'm trying to install the os Python module on Windows. In a cmd console, I typed: C:\\Users\\username> pip install os Collecting os Could not find a version that satisfies the …

  5. python - Can I force pip to reinstall the current version ... - Stack ...

    Oct 23, 2013 · pip install --upgrade --force-reinstall <package> When upgrading, reinstall all packages even if they are already up-to-date. pip install -I <package> pip install --ignore …

  6. python - How can I install cv2? - Stack Overflow

    Sep 11, 2019 · pip install opencv-python. opencv-python. If you need support for working videos: pip install opencv-contrib-python. opencv-contrib-python. If you need a non-GUI OpenCV: pip …

  7. Install a module using pip for specific python version

    On Ubuntu 10.04 by default Python 2.6 is installed, then I have installed Python 2.7. How can I use pip install to install packages for Python 2.7. For example: pip install beautifulsoup4 by …

  8. How do I install the yaml package for Python? - Stack Overflow

    Jan 10, 2013 · $ pip install pyyaml If you want to install python yaml system-wide in linux, you can also use a package manager, like aptitude or yum: $ sudo apt-get install python-yaml $ sudo …

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

    May 21, 2023 · Indeed the IPython console supports both Python language and shell commands, among other things. Note: Once you hit enter it may take some time to install and you can't …

  10. How can I add the sqlite3 module to Python? - Stack Overflow

    Jan 19, 2020 · @user722915, According to What's New in Python 2.5, The pysqlite module (pysqlite.org), a wrapper for the SQLite embedded database, has been added to the standard …

Refresh