How to find packages installed by python
How python looks for packages
Related recommendations: "python video"
Now There is probably not only one Python on your computer, but also more virtual environments. When installing the package, you accidentally forget to pay attention to the path of the installation package. First, let’s solve the problem of finding a bag. The answer to this question is very simple, but many people don’t know this principle. If the path of your Python interpreter is
Current working directory (return result of pwd command)
If you are using the default Python on Linux,
Several useful functions
sys.executable The currently used Python interpreter path
sys.path The search path list of the current package
sys.prefix Currently used
Example:
>>> import sys >>> sys.executable'/home/frostming/.pyenv/versions/3.7.2/bin/python' >>> sys.path ['', '/home/frostming/.pyenv/versions/3.7.2/lib/python37.zip', '/home/frostming/.pyenv/versions/3.7.2/lib/python3.7', '/home/frostming/.pyenv/versions/3.7.2/lib/python3.7/lib-dynload', '/home/frostming/.local/lib/python3.7/site-packages', '/mnt/d/Workspace/pipenv', '/home/frostming/.pyenv/versions/3.7.2/lib/python3.7/site-packages'] >>> sys.prefix'/home/frostming/.pyenv/versions/3.7.2'
Use environment variables to add the search path
If your If the path of the package does not exist in the search path list listed above, you can add the path to the PYTHONPATH environment variable and separate multiple paths with: (for Windows;).
But be careful to avoid adding the paths of packages of different Python versions to PYTHONPATH, such as PYTHONPATH=/home/frostming/.local/lib/python2.7/site-packages, because the paths in PYTHONPATH are Prioritizes the default search path, which may cause compatibility issues if using Python 3.
By the way, PATH is the search path used to find executable programs. If you run the command my_cmd in the terminal, the system will scan the paths in PATH in order to see if my_cmd exists in this path, so if If it says that the program cannot be found or the command cannot be recognized, then you need to check whether the path has been added to PATH.
How Python installs packages
Nowadays, pip is basically used to install Python packages. Even if you use pipenv or poetry, the bottom layer is still pip, which is always applicable. . If you have not installed pip, please refer here. If you have installed it and still cannot use the pip command, please refer to the previous section.
There are two ways to run pip:
pip ... python -m pip ...
The first way and the second way are similar, the difference is that the Python interpreter used in the first way is to write In pip, generally, if your pip path is
Then, without adding any custom configuration, using pip to install the package will automatically install it under
Options to change the installation location in pip
--prefix PATH, replace
Virtual environment
The virtual environment is to isolate the dependency packages of different projects and install them in different paths to prevent dependency conflicts. After understanding how Python installs packages, it is not difficult to understand the principles of virtual environments (virtualenv, venv modules). In fact, running virtualenv myenv will copy a new Python interpreter to myenv/bin, and create directories such as myenv/lib, myenv/lib/pythonX.Y/site-packages (the venv module is not used for copying, but the results are basically Same). After executing source myenv/bin/activate, myenv/bin will be inserted in front of PATH, so that the copied Python interpreter will be searched first. In this way, when installing the package later,
Summarize
You can see here that the most important thing about package path search is the
Now back to the three questions at the beginning, will everyone solve them? Write your troubleshooting steps or solutions in the comment area.
The examples in this article all use Unix path conventions. If it is a Windows system, appropriate changes should be made. For example,
The above is the detailed content of How to find packages installed by python. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

To run Python code in Sublime Text, you need to install the Python plug-in first, then create a .py file and write the code, and finally press Ctrl B to run the code, and the output will be displayed in the console.

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.
