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

    Oct 30, 2025 · 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 …

  2. Packaging Python Projects - Python Packaging User Guide

    Oct 30, 2025 · 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 …

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

  4. src layout vs flat layout - Python Packaging User Guide

    Oct 30, 2025 · src layout vs flat layout ¶ The “flat layout” refers to organising a project’s files in a folder or repository, such that the various configuration files and import packages are all in the …

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

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

  6. Overview of Python Packaging - Python Packaging User Guide

    Oct 30, 2025 · Overview of Python Packaging ¶ As a general-purpose programming language, Python is designed to be used in many ways. You can build web sites or industrial robots or a …

  7. How to see sizes of installed pip packages? - Stack Overflow

    On Linux Debian, how can I list all installed python pip packages and the size (amount of disk space used) that each one takes up?

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

  9. How do I check the versions of Python modules? - Stack Overflow

    I installed the Python modules construct and statlib using setuptools: sudo apt-get install python-setuptools sudo easy_install statlib sudo easy_install construct How do I check their versions f...

  10. Where are the python modules stored? - Stack Overflow

    Dec 24, 2015 · I have just installed a python module.Where is the module code actually stored on my machine? (is there a default [recommended] location that modules are stored)?