open-webui部署笔记----open-webui: command not found
假设安装路径为 /usr/local/lib/node_modules/open-webui/bin。# 永久生效(写入 ~/.bashrc 或 /etc/profile)如果安装路径未加入环境变量。
·
可执行文件未加入PATH
如果安装路径未加入环境变量 PATH
,需手动添加:
# 假设安装路径为 /usr/local/lib/node_modules/open-webui/bin export PATH="$PATH:/usr/local/lib/node_modules/open-webui/bin" # 永久生效(写入 ~/.bashrc 或 /etc/profile) echo 'export PATH="$PATH:/usr/local/lib/node_modules/open-webui/bin"' >> ~/.bashrc source ~/.bashrc
更多推荐
所有评论(0)