Home Backend Development Python Tutorial How to fix pip not recognized as an internal or external command: a simple guide

How to fix pip not recognized as an internal or external command: a simple guide

Feb 02, 2024 pm 01:09 PM
Solution pip command pip problem solving Command error

How to fix pip not recognized as an internal or external command: a simple guide

Teach you step by step how to solve the problem that pip is not an internal or external command

When developing in Python, you often need to use pip to install third-party libraries. However, sometimes we encounter a common problem, that is, when executing the pip command in the command prompt or terminal, the system prompts "pip is not an internal or external command." The solution to this problem is actually very simple. Below I will explain in detail how to solve this problem, including specific code examples.

The reason for the problem is that the system cannot find the path where the pip command is located. To solve this problem, we need to do two steps:

Step 1: Confirm whether the Python environment variable has been configured

Enter "python" in the command prompt or terminal, if you can enter normally Python interactive environment, indicating that the Python environment variables have been configured correctly. If you cannot enter the Python interactive environment normally, it means that the Python environment variables are not configured or are configured incorrectly.

In order to solve this problem, we need to manually add the Python installation path to the system environment variables. The following are the specific steps:

  1. Open the Control Panel and click "System and Security".
  2. Click "System" and then click "Advanced System Settings".
  3. Under the "Advanced" tab, click "Environment Variables".
  4. Find the variable named "Path" in the list of "System Variables" and double-click to open it.
  5. In the "Edit Environment Variables" dialog box, click "New".
  6. Enter the installation path of Python (for example, C:Python37), and then click "OK".
  7. Make sure the newly added path is in the list of the "Path" variable, and then click "OK" to close the window.
  8. Reopen in the command prompt or terminal, enter "python", and check whether you can enter the Python interactive environment normally.

Step 2: Make sure the path where the pip command is located has been added to the system's environment variables

Some versions of Python will automatically add the pip command to the system's environment variables during installation. , but some versions are not added automatically. Therefore, we need to manually add the path where the pip command is located to the system's environment variables. The following are the specific steps:

  1. Open the Control Panel and click "System and Security".
  2. Click "System" and then click "Advanced System Settings".
  3. Under the "Advanced" tab, click "Environment Variables".
  4. Find the variable named "Path" in the list of "System Variables" and double-click to open it.
  5. In the "Edit Environment Variables" dialog box, click "New".
  6. Enter the path where the pip command is located (such as C:Python37Scripts), and then click "OK".
  7. Make sure the newly added path is in the list of the "Path" variable, and then click "OK" to close the window.
  8. Reopen in the command prompt or terminal, enter "pip", and check whether the pip command can be executed normally.

Through the above two steps, we can solve the problem that pip is not an internal or external command. The following is a specific code example:

Try to execute the python command to check whether the Python environment is configured correctly:

$ python
Python 3.7.2 (default, Dec 27 2018, 07:35:06)
[GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
Copy after login

If you can enter the Python interactive environment normally, it means the Python environment Already configured correctly. Otherwise, follow step 1 above to add the Python installation path to the system environment variables.

Then, try to execute the pip command to check whether the pip command can be executed:

$ pip
Usage: pip <command> [options]

Commands:
...
Copy after login

If it can run normally, congratulations, the problem has been solved! If the prompt "pip is not an internal or external command" is still prompted, follow step 2 above and add the path where the pip command is located to the system's environment variables.

With the above steps and code examples, you should be able to successfully solve the problem that pip is not an internal or external command. When using pip, remember to update and upgrade pip in time to maintain the latest features and bug fixes. Hope this article is helpful to you!

The above is the detailed content of How to fix pip not recognized as an internal or external command: a simple guide. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the problem of third-party interface returning 403 in Node.js environment? How to solve the problem of third-party interface returning 403 in Node.js environment? Mar 31, 2025 pm 11:27 PM

Solve the problem of third-party interface returning 403 in Node.js environment. When we use Node.js to call third-party interfaces, we sometimes encounter an error of 403 from the interface returning 403...

How to solve the problem of 'Undefined array key 'sign'' error when calling Alipay EasySDK using PHP? How to solve the problem of 'Undefined array key 'sign'' error when calling Alipay EasySDK using PHP? Mar 31, 2025 pm 11:51 PM

Problem Description When calling Alipay EasySDK using PHP, after filling in the parameters according to the official code, an error message was reported during operation: "Undefined...

The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? Apr 01, 2025 pm 03:03 PM

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

How to solve the problem of cURL error 77 when connecting to Elasticsearch 8 using ThinkPHP6 and elasticsearch-php clients? How to solve the problem of cURL error 77 when connecting to Elasticsearch 8 using ThinkPHP6 and elasticsearch-php clients? Mar 31, 2025 pm 11:36 PM

Using the ThinkPHP6 framework combined with elasticsearch-php client to operate Elasticsearch...

What should I do if the okx device is restricted? What should I do if the okx device is restricted? Mar 12, 2025 pm 06:12 PM

OKX device restrictions Solution: Are your OKX account devices restricted? This article provides detailed self-service solutions. First, contact OKX official customer service to provide your account information and restricted device details. Customer Service may ask you to provide authentication information and explain any abnormal activities. Then you need to wait for OKX to review, which can take several days. After the audit is completed, take corresponding measures based on the reasons for the restrictions (such as abnormal login or violation), such as changing the password, enabling two-factor verification, or stopping the violation. If the restrictions are caused by system errors, please wait patiently for the system to recover and follow the official announcement of OKX.

See all articles