问题描述
我是 Python 和 Linux 的新手,想安装适用于 Python 3.6 的 MATLAB 引擎.我已经按照 Mathworks (http://www.mathworks.com/help/matlab/matlab-engine-for-python.html)并尝试使用 python setup.py build --build-base=$(mktemp -d) install
但错误仍然出现.我安装了 MATLAB R2018a 并将 Spyder 3.2.8 与 Anaconda 一起使用.
I'm new to Python and Linux and want to install a MATLAB Engine for Python 3.6. I already followed the steps from Mathworks (http://www.mathworks.com/help/matlab/matlab-engine-for-python.html)
and tried also to use python setup.py build --build-base=$(mktemp -d) install
but the error still appears. I have MATLAB R2018a installed and use Spyder 3.2.8 with Anaconda.
有人有什么建议吗?
提前致谢!
推荐答案
经过多次测试,我认为我解决了问题.如果有人有同样的问题,我会发布答案.如此处所述:https://stackoverflow.com/a/39759581/9834571您可以添加替代 python 命令.对我来说,当我将上述示例更改如下时,它就起作用了:
After many tests I think I solved the problem. I will post the answer if someone has the same problems. As mentioned here: https://stackoverflow.com/a/39759581/9834571 You can add an alternative python command. For me it worked when I vary the mentioned example as followed:
sudo update-alternatives --install /usr/bin/python python ~/anaconda3/envs/ 2
update-alternatives --display python
cd /usr/local/MATLAB/R2018a/extern/engines/python/
python setup.py build --build-base=$(mktemp -d) install
这篇关于Anaconda Python:ModuleNotFoundError:没有名为“matlab"的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!