我试图在Ubuntu14.04上安装并行Studio,应该安装一些Sh文件。当我使用sh install.sh时,它给出了以下错误:
{trap: SIGTSTP: bad trap
Error: Incorrect path to installation script. Installation can not be started
if the path contains space symbols.
Quitting! Press "Enter" to terminate install.
install.sh: 251: read: arg count
install.sh: 252: exit: Illegal number: -1} 那么,我必须为这个错误做些什么呢?谢谢
发布于 2018-07-03 14:44:22
从名称不包含空格的文件夹中运行安装脚本,任何父文件夹的安装脚本相同。
例如,“/home/yourname/Download”是可以的,"/home/yourname/Downloads/Parallel“则不是。
尝试:
mv install.sh /home/yourname/Downloads
cd /home/yourname/Downloads
sh install.shhttps://askubuntu.com/questions/1051808
复制相似问题