这是研究人员创建的科学软件,扩展名为 .install。我正在使用 Ubuntu 的最新版本。我尝试过./filename
使用 sudo,但没有成功。
软件:https://bitbucket.org/MDSINE/mdsine/downloads/
安装说明:运行提供的可执行文件
如果我执行 chmod 则+x mdsine_installer_linux_v1.3.install
不会得到任何东西。如果我写入./mdsine_installer_linux_v1.3.install
则会出现此错误:
Error: Download process failed - Unsupported protocol
. Check your internet connectivity, proxy server, firewall, and virus scanner settings and rerun the installer.
Installation failed.
答案1
您的安装程序尝试通过互联网访问 HTTP 地址。您的安装程序尝试访问的互联网服务器回复了301 Moved Permanently
,这意味着安装程序尝试访问的文件已被移动并且不再存在。
然后安装程序退出,因为它在预期的位置找不到文件。您的安装程序需要文件http://www.mathworks.com//pi_install_agent_pi_R2015b_glnxa64
,但似乎无法处理301 Moved Permanently
响应,因此将其重定向到https://www.mathworks.com/pi_install_agent_pi_R2015b_glnxa64
。也许安装程序根本无法处理 HTTPS?