WARNING: The script pygmentize.exe is installed in 'C:\Users\10597\AppData\Roaming\Python\Python36\Scripts' which is not on PATH.
时间: 2023-10-04 18:10:25 浏览: 249
这个警告提示是因为脚本pygmentize.exe安装在'C:\Users\10597\AppData\Roaming\Python\Python36\Scripts'路径下,但是该路径没有被添加到PATH环境变量中。为了解决这个问题,您可以按照以下步骤将路径添加到环境变量中:
1. 打开“控制面板”并选择“系统和安全”。
2. 点击“系统”,然后选择“高级系统设置”。
3. 在“高级”选项卡下,点击“环境变量”。
4. 在“系统变量”部分,找到名为“Path”的变量,并选中它。
5. 点击“编辑”按钮。
6. 在编辑环境变量窗口中,点击“新建”按钮。
7. 将警告信息中建议添加的路径'C:\Users\10597\AppData\Roaming\Python\Python36\Scripts'粘贴到新建的空白行中。
8. 点击“确定”按钮以保存更改。
9. 关闭所有打开的命令提示符窗口。
10. 打开一个新的命令提示符窗口,并重新运行命令。
重新启动命令提示符窗口是为了使新的环境变量生效。
相关问题
WARNING: The script pygmentize.exe is installed in 'C:\Users\dell\AppData\Roaming\Python\Python39\Scripts' which is not on PATH.
这个警告提示是因为你安装的Python包中的可执行文件所在的路径没有被添加到系统的环境变量中。如果不处理,可能会导致无法直接在命令行中运行这些可执行文件。解决方法是将这些路径添加到系统的环境变量中。具体步骤如下:
1. 打开“控制面板”,选择“系统和安全”,然后选择“系统”。
2. 点击“高级系统设置”链接。
3. 在“系统属性”对话框中,选择“高级”选项卡,然后点击“环境变量”按钮。
4. 在“环境变量”对话框中,找到“系统变量”区域下的“Path”变量,然后点击“编辑”按钮。
5. 在“编辑环境变量”对话框中,点击“新建”按钮,然后输入需要添加的路径,例如'C:\Users\dell\AppData\Roaming\Python\Python39\Scripts',然后点击“确定”按钮。
6. 依次点击“确定”按钮关闭所有对话框。
这样就可以解决这个警告提示了。
WARNING: The script wheel.exe is installed in 'C:\Users\86136\AppData\Roaming\Python\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. WARNING: The script f2py.exe is installed in 'C:\Users\86136\AppData\Roaming\Python\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. WARNING: The script normalizer.exe is installed in 'C:\Users\86136\AppData\Roaming\Python\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. WARNING: The scripts pyrsa-decrypt.exe, pyrsa-encrypt.exe, pyrsa-keygen.exe, pyrsa-priv2pub.exe, pyrsa-sign.exe and pyrsa-verify.exe are installed in 'C:\Users\86136\AppData\Roaming\Python\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. WARNING: The script markdown_py.exe is installed in 'C:\Users\86136\AppData\Roaming\Python\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. WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Users\86136\AppData\Roaming\Python\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. WARNING: The script tensorboard.exe is installed in 'C:\Users\86136\AppData\Roaming\Python\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.
这些警告是因为你在安装某些 Python 包时,它们在安装过程中将可执行文件安装到了 Python 的 `Scripts` 文件夹中,但是这个文件夹不在系统的 `PATH` 环境变量中,因此可能无法直接运行这些可执行文件。
你可以将 `C:\Users\86136\AppData\Roaming\Python\Python39\Scripts` 添加到系统的 `PATH` 环境变量中,这样就可以直接在命令行中运行这些可执行文件了。或者,你可以使用 `--no-warn-script-location` 选项来忽略这些警告。
阅读全文