WARNING: The scripts pip.exe, pip3.10.exe and pip3.exe are installed in 'C:\Users\李强\AppData\Roaming\Python\Python310\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
时间: 2023-07-16 17:13:08 浏览: 189
这个警告信息是因为你在使用 pip 安装 Python 包时,安装路径不在系统的环境变量 PATH 中。这并不会影响你使用已经安装好的包,但是如果你想使用命令行快速调用这些脚本,你需要将该路径添加到 PATH 中。你可以按照以下步骤来添加该路径:
1. 打开控制面板,找到“系统”(System)选项,点击“高级系统设置”(Advanced system settings)。
2. 在弹出的窗口中,点击“环境变量”(Environment Variables)按钮。
3. 在“系统变量”(System variables)中找到“Path”变量,点击“编辑”(Edit)按钮。
4. 在弹出的编辑窗口中,点击“新建”(New)按钮,输入需要添加的路径“C:\Users\李强\AppData\Roaming\Python\Python310\Scripts”,点击“确定”(OK)按钮。
5. 关闭所有窗口,重新打开命令行窗口,输入 pip 命令应该就可以直接调用了。
相关问题
Installing collected packages: pip Attempting uninstall: pip Found existing installation: pip 22.0.3 Uninstalling pip-22.0.3: Successfully uninstalled pip-22.0.3 WARNING: The scripts pip.exe, pip3.10.exe and pip3.exe are installed in 'C:\Users\李强\AppData\Roaming\Python\Python310\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed pip-23.1.2
这段信息是在安装 pip 包的过程中显示的。首先检测是否已经安装了 pip 包,如果已经安装了,则先卸载旧版本的 pip 包,然后安装新版本的 pip 包。这里显示了成功安装了 pip-23.1.2 版本的包。同时会给出一个警告,提示 pip.exe, pip3.10.exe 和 pip3.exe 这三个脚本的路径不在 PATH 环境变量中,建议将该路径添加到 PATH 中,或者使用 --no-warn-script-location 参数来禁止该警告。
这个报错怎么解决WARNING: The scripts pip.exe, pip3.10.exe, pip3.9.exe and pip3.exe are installed in 'C:\Users\wyx\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
这个报错是在提醒你安装的pip所在的路径没有被添加到系统环境变量PATH中。对于这个问题,你可以考虑将pip所在的路径添加到系统环境变量中,或者在使用pip命令时加上`--no-warn-script-location`参数来忽略这个警告。
如果你想将pip所在的路径添加到系统环境变量中,可以按照以下步骤进行操作:
1. 打开控制面板,选择"系统和安全",然后选择"系统",点击"高级系统设置"。
2. 在"高级"选项卡中,点击"环境变量"。
3. 在"系统变量"中找到"Path"变量,点击"编辑"按钮。
4. 点击"新建"按钮,输入pip所在的路径(例如:C:\Users\wyx\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\Scripts)。
5. 点击"确定"按钮,保存修改并关闭所有窗口。
添加完成后,你可以重新打开命令行窗口,输入pip命令进行测试,这个问题应该就会解决了。
阅读全文