WARNING: The script isympy is installed in '/home/eisaoh/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.这是什么意思
时间: 2024-02-07 09:02:23 浏览: 118
报错:pytesseract.TesseractNotFoundError: tesseract is not installed or it’s not in your path
这个警告信息是指您安装的 iSymPy 脚本被安装在了 '/home/eisaoh/.local/bin' 这个路径下,但是该路径不在系统的 PATH 环境变量中。PATH 环境变量是一个包含多个目录路径的列表,系统会在其中搜索可执行程序。因此,如果您想在命令行中直接运行 iSymPy 脚本,您需要将 '/home/eisaoh/.local/bin' 添加到 PATH 环境变量中。您可以通过在终端中运行以下命令来添加该路径:
```
export PATH=$PATH:/home/eisaoh/.local/bin
```
或者,如果您不想看到这个警告,可以使用 --no-warn-script-location 参数来禁用该警告。
阅读全文