Filter löschen
Filter löschen

Cannot import python libraries in Matlab

85 Ansichten (letzte 30 Tage)
Danilo Menegatti
Danilo Menegatti am 18 Nov. 2020
Kommentiert: David Håkansson am 23 Aug. 2021
I'm currently using Matlab R2020a with Python 3.8 which is seen by Matlab as the following code shows:
pe = pyenv;
pe.Version
ans =
"3.8"
My problem consits in importing python libraries. As the textwrap example shows, I tried to import the libraries in the following way:
tf = py.importlib.import_module('tensorflow')
keras = py.importlib.import_module('tensorflow.keras')
py.importlib.import_module('keras.models.load_model')
K = py.importlib.import_module('keras.backend')
np = py.importlib.import_module('numpy')
py.importlib.import_module('numpy.array')
py.importlib.import_module('numpy.hstack')
py.importlib.import_module('numpy.backend')
The problem is that I get the same error for all of them. For simplicity I share only the error related to the first module:
Error using <frozen importlib>_find_and_load_unlocked
(line 973)
Python Error: ModuleNotFoundError: No module named
'tensorflow'
Error in <frozen importlib>_find_and_load (line 991)
Error in <frozen importlib>_gcd_import (line 1014)
Error in __init__>import_module (line 127)
I even tried to import the libraries in the following way:
import py.numpy
But it does not work. What is my mistake?
  2 Kommentare
Abdelwahab Afifi
Abdelwahab Afifi am 14 Feb. 2021
Bearbeitet: Abdelwahab Afifi am 14 Feb. 2021
The same problem here. have you find the solution ?!
David Håkansson
David Håkansson am 23 Aug. 2021
Verify that the libraries are in the python sys.path with:
py.sys.path
If not, you can add the library reference with something like this, (for me working on Linux atleast):
P = py.sys.path
insert(P, int32(0), "/homes/David/PycharmProjects");

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Kunal Kumar
Kunal Kumar am 19 Nov. 2020
I understand that you are trying import python libraries inside MATLAB.
Please refer to the Understanding Python and MATLAB import Commands documentation for more details.
  1 Kommentar
Tom Sutherland
Tom Sutherland am 4 Feb. 2021
I have the same issue and that reference does not help solve the problem

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Call Python from MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by