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 14:13:08 浏览: 187
pip3.10.exe
这个警告信息是因为你在使用 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 命令应该就可以直接调用了。
阅读全文