WARNING: The script google-oauthlib-tool is installed in '/home/chang/.local/bin' which is not on PATH.
时间: 2024-09-12 11:15:10 浏览: 37
报错:pytesseract.TesseractNotFoundError: tesseract is not installed or it’s not in your path
这个警告信息表明你安装了一个名为`google-oauthlib-tool`的脚本,它被放置在了一个特定的目录`/home/chang/.local/bin`,而这个目录并没有包含在你的系统环境变量`PATH`中。`PATH`环境变量用于指定系统在哪些目录下查找可执行文件。当运行一个命令时,系统会按照`PATH`变量所列的目录顺序去搜索这个命令对应的可执行文件。
如果你尝试从任何地方运行`google-oauthlib-tool`,系统将无法找到它,因为`/home/chang/.local/bin`不在`PATH`中。要解决这个问题,你可以将`/home/chang/.local/bin`添加到你的`PATH`环境变量中。在Linux或macOS系统中,你可以在你的shell配置文件(例如`.bashrc`, `.bash_profile`, 或`.zshrc`,取决于你使用的shell)中添加以下行:
```bash
export PATH="/home/chang/.local/bin:$PATH"
```
添加完毕后,你需要重新加载配置文件或重新启动你的终端会话,这样改动才会生效。之后,你就可以在任何地方运行`google-oauthlib-tool`了。
阅读全文