About 12,100 results
Open links in new tab
  1. Installing Packages - Python Packaging User Guide

    2 days ago · Installing Packages ¶ This section covers the basics of how to install Python packages. It’s important to note that the term “package” in this context is being used to describe a bundle of …

  2. How to list all installed packages and their versions in Python?

    Is there a way in Python to list all installed packages and their versions? I know I can go inside python/Lib/site-packages and see what files and directories exist, but I find this very awkward. ...

  3. Packaging Python Projects - Python Packaging User Guide

    2 days ago · Packaging Python Projects ¶ This tutorial walks you through how to package a simple Python project. It will show you how to add the necessary files and structure to create the package, …

  4. python - How do I solve "error: externally-managed-environment" …

    When I run pip install xyz on a Linux machine (using Debian or Ubuntu or a derived Linux distribution), I get this error: error: externally-managed-environment × This environment is externally ma...

  5. Writing your pyproject.toml - Python Packaging User Guide

    2 days ago · Writing your pyproject.toml ¶ pyproject.toml is a configuration file used by packaging tools, as well as other tools such as linters, type checkers, etc. There are three possible TOML tables in …

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

  7. Install packages in a virtual environment using pip and venv - Python

    Install packages in a virtual environment using pip and venv ¶ This guide discusses how to create and activate a virtual environment using the standard library’s virtual environment tool venv and install …

  8. Python - package not found although it is installed

    Apr 6, 2018 · However, when I type the command import wfdb in Python notebook or the version of python in terminal, I get the following message No module named 'wfdb' Does it have to do with the …

  9. パッケージをインストールする - Python Packaging User Guide

    Python 3.6.3 のような応答が出力されるはずです。 もし Python がなければ、最新バージョンの 3.x を python.org からインストールするか、 Python ユーザのためのヒッチハイクガイドの Python をイン …

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