所以我试图在远程[大学]服务器上编辑.bash_profile以获取我的个人资料。我没有root访问权限,这个项目的最终目标是能够从我自己的帐户运行python。我在我自己的目录中安装了python(在〜/ python / Python-2.7.11 /中),但现在为了能够使用它,我试图简单地将.bash_profile指向正确的方向:
export PATH = $HOME/python/Python-2.7.11/:$PATH
export PYTHONPATH=$HOME/python/Python-2.7.11
但是,每当我尝试运行source .bash_profile
时,我都会
export: Command not found.
export: Command not found.
我一直在寻找如何解决这个问题几个小时,所以如果这是另一个转发,我很抱歉,但我仍然无法找到任何东西的工作原理。
感谢您的帮助!
答案 0 :(得分:3)
您正在使用tcsh但通过bash命令设置内容。对于tsch,请使用setenv命令 - 查看https://www.cyberciti.biz/faq/unix-linux-set-path-variable-in-c-shell/