【发布时间】:2018-04-12 21:58:56
【问题描述】:
如何从我的 Ubuntu 笔记本电脑上的任何目录启动程序 CASA?
CASA 资源:https://casa.nrao.edu/installlinux.shtml
在“bash”和“path”上提供了信息,但我是 Linux 的新手,并且 CASA 在终端中运行。
目前我必须导航到 casa.../bin/ 目录并键入 ./casa,但我以后需要从其他文件夹访问 CASA。
到目前为止,我已经尝试了多种组合:
gedit ~/.profile &
...文档但无济于事。
此文档目前如下所示:
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin directories
PATH="$PATH:/home/edited-out-name/Downloads/casa-release-4.7.2-el7/bin"
# Ubuntu make installation of Ubuntu Make binary symlink
PATH=/home/edited-out-name/.local/share/umake/bin:$PATH
请帮忙!
【问题讨论】:
标签: linux bash terminal path executable