On 21/01/2016 at 12:24, xxxxxxxx wrote:
I tried installing numpy, but it does not work.
Here is what I did:
- I downloaded from Niklas Rosensteins website
Python Binary packages for Cinema 4D (NumPy, Scipy, Cython)_<_h2_>_
Google drive: numpy-1.92 and put it in folder d:/modules
- I downloaded localimport from
https://github.com/NiklasRosenstein/localimport
and included it in my script
- the rest of the script:
def main() :
with _localimport('d:/modules') :
import numpy
assert 'numpy' not in sys.modules
gui.MessageDialog('Hello World!')
if __name__=='__main__':
main()
- I got the following messages in the console:
So, it seems as if numpy is found, but the dll is missing.
Questions:
- is a dll needed
- if yes, how do I get (compile) the library?
I thought that the binary from Niklas would provide the dll?
I am doing this in preparation for using / including the opencv library.
-Pim