This installation command, other than the original one, has worked for me: python setup.py build --build-base=$(mktemp -d) install
ImportError: No module named matlab.engine
85 ビュー (過去 30 日間)
表示 古いコメント
Hi,
I could not seem to import matlab.engine in python in my Ubuntu 15 as shown in the following figure:

The MATLAB Engine API for Python has been successfully installed following the instructions here http://au.mathworks.com/help/matlab/matlab_external/install-the-matlab-engine-for-python.html
Does anyone have a solution for this issue?
0 件のコメント
回答 (5 件)
Bo Li
2016 年 6 月 16 日
Anaconda may not work as MATLAB Engine API for Python supports CPython only:
Another issue to consider is whether your Python version support wide-Unicode:
Following code can be used to check it supports wide Unicode or not:
>>> import sys
>>> if sys.maxunicode > 65535:
... print 'wide-unicde'
... else:
... print 'narrow-unicode'
0 件のコメント
Anshul Joshi
2018 年 5 月 15 日
I had the same issue with mine. I am running Ubuntu 16.04 and Python 3.6 on Pycharm, and Matlab 2018a. After installing Matlab Python API as given on http://au.mathworks.com/help/matlab/matlab_external/install-the-matlab-engine-for-python.html
it creates a folder structures like:
<installation-dir>/matlab/engine/
and
<installation-dir>/lib/ and <installation-dir>/lib.linux-x86-64-2.7/
or something like that. After I copied these directories into my Python project root they started working and I was able to import matlab.engine(). In Pycharm you can add source folders paths to your project; you can try something similar.
4 件のコメント
Hongbin Liu
2018 年 7 月 22 日
I have addressed my problem. I found that the Python could not find the Matlab module because my computer had two Python versions. Therefore, I pointed out the Python version when the API was installed, i.e. the installing code was changed as
python3 setup.py install
Best regards and thanks again.
Farzadd Amirjavidd
2019 年 1 月 9 日
There is a full answer to this question for windows 10 64 bit and Pycharm :
0 件のコメント
Ankit Jaiswal
2020 年 1 月 8 日
I had same issue. I was trying it on Spyder but it didn't work. I rhen shifted to Pycharm and the error was gone. I guess there is some issue with Anaconda-Spyder.
1 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!