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 check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- 沿轴计算直方图 2022-01-01