I'm trying to read excel from Cinema4d using python. I believed this can be achieved using XLWT
. Where did I should copy and pasthe the XLWT
package in Mac? I know in Window the location is here :C:\Users\user\AppData\Roaming\MAXON\CINEMA 4D version\library\python\packages\
. How about Mac?
问问题
221 次
2 回答
0
由于 Python 已经在 OS X 上,您应该能够使用:
easy_install xlwt
或者
pip install xlwt
如果你下载 xlwt 那么你可以使用:
python setup.py install
于 2014-03-21T05:12:43.613 回答
0
您必须将 python 包安装到 Cinema4D 的 Python 库文件夹中。如果您在 Cinema4D 中选择首选项菜单,则会有一个名为“打开首选项文件夹...”的按钮,这将导致一个名为 CINEMA 4D R_ 的文件夹在此文件夹中 library/python/packages/osx/ 是您必须安装的文件夹xlrd 和 xlwt 包。如果这成功了,您应该能够访问 Excel 文件...
于 2014-04-04T04:01:18.660 回答