Anaconda Python: ModuleNotFoundError: No module named #39;matlab#39;(Anaconda Python:ModuleNotFoundError:没有名为“matlab的模块)
问题描述
我是 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"的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Anaconda Python:ModuleNotFoundError:没有名为“matlab&quo
基础教程推荐
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01