bash:setenv:command not found
时间: 2023-09-04 15:14:59 浏览: 212
Linux -bash: ls: command not found
这个错误通常是因为你使用了错误的命令。在Linux或Unix系统中,`setenv`并不是一个内置的命令,而是一些shell(如csh或tcsh)所支持的命令。
如果你想设置环境变量,在bash shell中你应该使用`export`命令,例如:
```
export MY_VAR="Hello world"
```
这会将`MY_VAR`环境变量设置为`Hello world`。如果你想在每次启动bash shell时自动设置环境变量,可以将该命令添加到`~/.bashrc`文件中。
阅读全文