Cannot access Python using PythonEnvironment
6 次查看(过去 30 天)
显示 更早的评论
I am unable to get a PythonEnvironment to work
>> pyenv('Version', '/Users/bendichter/opt/miniconda3/bin/python')
ans =
PythonEnvironment with properties:
Version: "3.9"
Executable: "/Users/bendichter/opt/miniconda3/bin/python"
Library: "/Users/bendichter/opt/miniconda3/lib/libpython3.9.dylib"
Home: "/Users/bendichter/opt/miniconda3"
Status: NotLoaded
ExecutionMode: InProcess
>> py.math.sqrt(42)
Unable to resolve the name 'py.math.sqrt'.
>> py.list({'a','b'});
Unable to resolve the name 'py.list'.
I have tried a few different versions of Python in various conda environments. I am using coda and an M1 mac. The print out of pyenv seems to indicate that the python installation is registered correctly, but none of the subsequent commands that use the Python connection work.
1 个评论
Masanori Hariyama
2023-6-17
Hi, I had the same problem, and fixed it.
For M1 mac, we can install intel and arm versions of python.
When I installed the arm version, the problem occured. When I installed the Intel version, the problem did not occurred.
I hope this can be helpful for you.
回答(1 个)
Himanshu
2023-5-22
Hello Ben,
I understand that you are facing difficulties while using the MATLAB Python co-execution feature and encountering errors while executing the Python commands.
You can follow the below steps to resolve the issue:
- MATLAB automatically loads Python when you type "py.command". You cannot change the interpreter after MATLAB loads Python. To change the interpreter, restart MATLAB.
- After restarting, check that MATLAB is using the desired Python environment. You can do this by running the "pyenv" command in MATLAB.
You can refer to the below documentation to understand more about "pyenv" in MATLAB.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call Python from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!