"No module named 'matlab.engine'; 'matlab' is not a package"

542 ビュー (過去 30 日間)
Jeroen Vancraen
Jeroen Vancraen 2017 年 10 月 23 日
回答済み: Maria Bardales Velasquez 2022 年 5 月 22 日
Hi everyone,
I'm trying to set up a connection between my python and matlab scripts. However i'm having some difficulties with the matlab module for python. I'm using a windows 10 computer and followed these instructions to install the python API for matlab: https://www.mathworks.com/help/matlab/matlab_external/install-the-matlab-engine-for-python.html
I keep getting this error: "No module named 'matlab.engine'; 'matlab' is not a package"
The matlab module was succesfully installed using the latest version of pip.
I searched the internet but no given solution could help me. Any ideas?
Greetings,
Jeroen
  1 件のコメント
pengze zhu
pengze zhu 2020 年 5 月 29 日
Hi,
I'm using R2017b and Python3.5.I have the same problem too.

サインインしてコメントする。

回答 (12 件)

Stephan
Stephan 2018 年 1 月 15 日
Hi,
at last I was able to solve the problem for my case. After I have checked several times that the installation was successful: i.e. Matlab appears in the "Site packages" in the Python installation:
In Idle-> under "File"-> "Path Browser" Check whether the directory containing the MATLAB package is indeed on this path and verify that "MATLAB: Package" shows up when you expand that directory.
After this was the case, I found that my test file had the name "matlab.py". Since the import command of Python first searches for a corresponding py file and then after packages, I was able to solve the problem by renaming the file. Now it works perfectly.
This also explains why it worked on the command line with the direct input of the corresponding commands but did not work out of a development environment when I used my file called matlab.py.
  2 件のコメント
Ankit Jaiswal
Ankit Jaiswal 2020 年 2 月 13 日
This reply is very tough to understand. Not sure where you are talking about idle etc. Can you please explain it more clearly. Thanks.
Milena Mori
Milena Mori 2021 年 1 月 23 日
I had also named my file 'matlab.py' and after changing it, it finally worked! Thank you so much!

サインインしてコメントする。


Deepak Dhillon
Deepak Dhillon 2020 年 3 月 11 日
I also face the same problem. I have MATLAB 2019b installed, anaconda installed, and spyder installed. I guess there could be some path issues, but could not spot it exactly. Kindly help.
  5 件のコメント
Jieqiang Wei
Jieqiang Wei 2021 年 3 月 4 日
@Diego Quan It works for me!
Rubem Pacelli
Rubem Pacelli 2021 年 12 月 16 日
編集済み: Rubem Pacelli 2021 年 12 月 16 日
I could replicate it on Linux too. First, on the terminal, type
pip list | grep matlab
You should not see anything... You must to go to
[matlab_root_directory]/extern/engines/python
where [matlab_root_directory] is your installation directory. Then you simply type
sudo python setup.py install
Now, run again
pip list | grep matlab
You should see that there is a package whose name is
matlabengineforpython R2021a
where R2021a shall vary depending on your matlab version.

サインインしてコメントする。


Florian Ruther
Florian Ruther 2020 年 5 月 5 日
I just want to add what solved my problem.
I had to install the matlab engine with an admin account. Therefore the necessary files were put in the AppData\Local\Programs\Python\Python36 - folder of the admin account. After I copied everything from there to the corresponding folder of my user account it worked.
  2 件のコメント
Mohd Toaha Umar
Mohd Toaha Umar 2020 年 8 月 12 日
Thank you, Florian. It worked for me
Metehan Bolat
Metehan Bolat 2020 年 10 月 28 日
I could not understand where you copied the file from where.

サインインしてコメントする。


Vijaykumar Kudtalkar
Vijaykumar Kudtalkar 2021 年 8 月 14 日
Just found a simple way to solve this problem
run command as below in Matlab command prompt
cd (fullfile(matlabroot,'extern','engines','python'))
system('python setup.py install')
if it shows as below
running install
running build
running build_py
error: You do not have write permission in build\lib\matlab\engine
ans =
1
the go to installpath\R2021a\bin and provide write permission to the folder path including sub directories and then run the command in python command prompt
import matlab.engine
It worked for me.
  1 件のコメント
Deepika
Deepika 2021 年 10 月 8 日
Can u plz tell me how to give write permission becoz I m facing dis issue

サインインしてコメントする。


Steven Lord
Steven Lord 2017 年 10 月 23 日
Which release are you using? Is it older than release R2014b? Note that the page you referenced states, in part: "Your system has a supported version of Python and MATLAB R2014b or later."

Jeroen Vancraen
Jeroen Vancraen 2017 年 10 月 23 日
I'm using R2017b student edition, and Python 3.5. These versions should be compatible no?
Greetings

diadochos
diadochos 2017 年 12 月 14 日
You could check if you have been successful installing the module. i.e. go to the directory that's explained in the URL you pasted: https://www.mathworks.com/help/matlab/matlab_external/install-the-matlab-engine-for-python.html
and run "python setup.py install".
In my case, with MATLAB R2015b release, I got the following error message:
OSError: MATLAB Engine for Python supports Python version 2.7, 3.3 and 3.4, but your version of Python is 3.6
Since you may have missed the message, you could try to install it again.

Stephan
Stephan 2017 年 12 月 26 日
編集済み: Stephan 2017 年 12 月 27 日
Hi,
i have the same problem using Windows 10, Matlab 2017a and Python 3.5 (same using 2.7 - then used 3.5). What can i do to solve this?
2017-12-27 Update: When starting Python directly in the command window, it is working fine with the "isprime(37)" example from Mathworks Documentation Site.
But it doesnt work when calling a .py-File. Who can help?

Raghu Ram Theerthala
Raghu Ram Theerthala 2019 年 11 月 22 日
May be the error is trying to install in conda environment. Check it. if that's the case, deactivate conda and run setup.py install command again. This time it should run.
  2 件のコメント
sun mengxin
sun mengxin 2019 年 11 月 26 日
this worked for me, thanks
Vidya Kurada
Vidya Kurada 2021 年 2 月 3 日
how to do this.Any steps?

サインインしてコメントする。


Eric Aw
Eric Aw 2021 年 9 月 15 日
I have literally did everything suggested by in this page. But it is still not working for me .
I have type :
cd (fullfile(matlabroot,'extern','engines','python'))
system('python setup.py install')
in MATLAB, in cmd, everything installed perfectly . Even try this too :
python setup.py build --build-base=$(mktemp) install
But I still get the error of no module named 'matlab.engine'
Is there still any other suggestions?
  3 件のコメント
Eric Aw
Eric Aw 2021 年 9 月 15 日
@Ankit Jaiswal Thank you very much !! It finally worked !! Seriously they really should include this step in the guide !
Ankit Jaiswal
Ankit Jaiswal 2021 年 9 月 15 日
That's very nice to hear 😊😊😊

サインインしてコメントする。


Shuaiwen Huang
Shuaiwen Huang 2022 年 4 月 27 日
I tried the methods above and in Ubuntu it can find my package, but I dont know why it doesn't work in Spyder, I've changed tha path too, do anyone have any ideas please?

Maria Bardales Velasquez
Maria Bardales Velasquez 2022 年 5 月 22 日
Yo tenía el mismo problema por 3 días, nada funcionaba. Pero probé cambiar de versión de python en un nuevo ambiente de anaconda.
Uso matlab 2020a y ambiente de anaconda python versión 3.6.13

カテゴリ

Help Center および File ExchangeCall MATLAB from Python についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by