error while executing py.textwrap.wrap(T)
1 次查看(过去 30 天)
显示 更早的评论
I am working on MATLAB 2015a, and would like to run Python script on matlab. I tried the example, unfortunately I get an error: Undefined variable "py" or class "py.textwrap.wrap".
This is the output for pyversion: version: '2.7' executable: 'C:\Python27\pythonw.exe' library: 'C:\Python27\python27.dll' home: 'C:\Python27' isloaded: 0
Shouldn't isloaded be 1 insead of 0?
回答(2 个)
Robert Snoeberger
2015-7-6
Are you using 64-bit MATLAB? If so, did you check if both MATLAB and Python are 64-bit?
2 个评论
Robert Snoeberger
2015-7-7
Can you provide the output of the following two MATLAB commands?
>> computer arch
>> system('C:\Python27\pythonw.exe -c "import platform; print platform.architecture()"');
Matthew Connolly
2015-12-16
It seems like this question was never ansewered. I am running into the same problem. My output from the aforementioned commands is as follows:
>> computer arch
ans =
win64
>> system('C:\Python27\pythonw.exe -c "import platform; print platform.architecture()"');
('64bit', 'WindowsPE')
Any help on this would be appreciated.
1 个评论
Robert Snoeberger
2015-12-17
I recommend that you contact MathWorks technical support [1].
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call MATLAB from Python 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!