我有一个Linux操作系统,我想安装用于Python的MATLAB Engine API,以便在Jupiter笔记本上使用MATLAB。我从这里开始跟踪steps of installation,但看来Matlab引擎API只能在Python 3.7上运行(但它可以在python 3.6上运行),我的最终目标是在{ {3}}。有没有人能够使用Python 3.7安装适用于Python的MATLAB引擎API?
谢谢您的时间。
答案 0 :(得分:1)
chmod 777 setup.py
)。在支持的版本列表中添加“ 3.7”:_supported_versions = ['2.7', '3.4', '3.5', '3.6', '3.7']
python3.7 setup.py install
pip install matlab_kernel
raise EnvironmentError("Python %s is not supported." % _version)
并添加_PYTHONVERSION = 3_6
。结果:if _version in _supported_versions:
_PYTHONVERSION = _version
else:
_PYTHONVERSION = '3_6'
#raise EnvironmentError("Python %s is not supported." % _version)
现在您可以启动 jupyter 并选择 Matlab内核