Anaconda Python:ModuleNotFoundError:没有名为“matlab"的模块

Anaconda Python: ModuleNotFoundError: No module named #39;matlab#39;(Anaconda Python:ModuleNotFoundError:没有名为“matlab的模块)
本文介绍了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"的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python arbitrarily incrementing an iterator inside a loop(python在循环内任意递增迭代器)
Joining a set of ordered-integer yielding Python iterators(加入一组产生 Python 迭代器的有序整数)
Iterating over dictionary items(), values(), keys() in Python 3(在 Python 3 中迭代字典 items()、values()、keys())
What is the Perl version of a Python iterator?(Python 迭代器的 Perl 版本是什么?)
How to create a generator/iterator with the Python C API?(如何使用 Python C API 创建生成器/迭代器?)
Python generator behaviour(Python 生成器行为)