Cannot import python libraries in Matlab

63 visualizaciones (últimos 30 días)
Danilo Menegatti
Danilo Menegatti el 18 de Nov. de 2020
Comentada: David Håkansson el 23 de Ag. de 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 comentarios
Abdelwahab Afifi
Abdelwahab Afifi el 14 de Feb. de 2021
Editada: Abdelwahab Afifi el 14 de Feb. de 2021
The same problem here. have you find the solution ?!
David Håkansson
David Håkansson el 23 de Ag. de 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");

Iniciar sesión para comentar.

Respuestas (1)

Kunal Kumar
Kunal Kumar el 19 de Nov. de 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 comentario
Tom Sutherland
Tom Sutherland el 4 de Feb. de 2021
I have the same issue and that reference does not help solve the problem

Iniciar sesión para comentar.

Categorías

Más información sobre Call Python from MATLAB en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by