Re: [PyMOL] question on cctbx and pymol

2005-08-24 Thread Robert Campbell
Hi, * Jianghai Zhu [2005-08-24 01:59] wrote: > > I could not get cctbx work under either MacPymol or PymolX11Hybrid in > Mac OS X. Anywhere I can find some instructions to get cctbx work in > OS X? There is a page on the cctbx with special instructions for using it on the Mac: http://cc

[PyMOL] question about _cmd.pyd

2005-08-24 Thread wenming hu
i have written python extend module by c/c++, but i saw a module of pyMOL called _cmd.pyd instead of _cmd.dll. and it is written by c/c++ also, the author use makefile to compile it into _cmd.pyd. i have some question about it: 1. what's the difference between them? i saw the code is same as commo

RE: [PyMOL] question about _cmd.pyd

2005-08-24 Thread Warren DeLano
Wen, The only form of end-user PyMOL compilation we support on Windows is via Python's distutils facility. Assuming that your system paths are set up correctly, distutils compilations will work fine with msvc6 -- no Makefile is required. Your own c/c++ code should be built as a standalone

[PyMOL] "only rank-0 arrays can be converted to Python scalars"

2005-08-24 Thread Shivender Shandilya
hi, while using kabsch.py by Jason Vertrees from the pymolwiki site (http://www.pymolwiki.org/index.php/Kabsch#The_Code) i am getting the following error message: Traceback (most recent call last): File "C:\Program Files\DeLano Scientific\PyMOL/modules\pymol\parser.py", line 191, in parse

[PyMOL] Re: RE: [PyMOL] question about _cmd.pyd

2005-08-24 Thread wenming hu
I see. thank you for your answer. and i'm wondering, how do u develop python modules like _cmd.pyd? only via setup.py, and type python setup.py build to compile it? how do u debug it on the procudure of development? for me, it's not easy to develop _cmd.pyd only via setup.py script, i think, the