Stack has been installed to: /usr/local/bin/stack WARNING: '/home/lyj/. local/bin' is not on your PATH. Stack will place the binaries it builds in '/home/lyj/. local/bin' so for best results, please add it to the beginning of PATH in your profile.这个问题怎么解决
时间: 2023-06-28 14:11:34 浏览: 129
这个问题的解决方法是将路径 "/home/lyj/.local/bin" 添加到环境变量 PATH 中。
你可以按照以下步骤进行操作:
1. 打开终端,输入以下命令打开 .bashrc 文件:
```
nano ~/.bashrc
```
2. 在文件的最后一行添加以下内容:
```
export PATH=$PATH:/home/lyj/.local/bin
```
3. 按下 Ctrl + X 保存并退出。
4. 输入以下命令使修改生效:
```
source ~/.bashrc
```
完成以上步骤后,再次运行 Stack 命令,应该就不会再出现警告信息了。
阅读全文