Installing MATLAB Engine API for Python
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Deepa Maheshvare
el 3 de Nov. de 2020
Comentada: Ameer Hamza
el 3 de Nov. de 2020
Hi,
I'm going through the documentation available here https://in.mathworks.com/help/matlab/matlab_external/install-the-matlab-engine-for-python.html to install matlab engine in python.
I did
cd "matlabroot\extern\engines\python"
after which I have to do
python setup.py install
But I am not sure what has to be done when there are multiple python versions installed. How can I specify the path to the python version / virtuen env in which I want to set up the matlab engine in the command `python setup.py install`?
Suggestions will be useful
0 comentarios
Respuesta aceptada
Ameer Hamza
el 3 de Nov. de 2020
Editada: Ameer Hamza
el 3 de Nov. de 2020
Activate the virtual environment and then run these line
cd "matlabroot\extern\engines\python"
python setup.py install
Alternatively, you can also try the following without activating the environment
cd "matlabroot\extern\engines\python"
/path/to/virtualenv/python setup.py install
but this second option can cause some issues.
2 comentarios
Ameer Hamza
el 3 de Nov. de 2020
Try this
eng = matlab.engine.start_matlab()
eng.main(nargout=0)
Más respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!