Here's a simple question.
Need:
=> to use scipy special package function in my python prog (python2.6).
1. Downloaded & intalled numpy for python2.6
2. Downloaded & intalled scipy (scipy-0.8.0-win32-superpack-python2.6.exe)
tested:
import numpy
import scipy
- everything's ok
According to scipy docs, a package needs to be loaded before a function from it can be called (for reference: the function I need is Bessel modified function of first kind of any real order).
Tried (from interpreter):
from scipy import special
- CRASH! >:/
Tried from file test.py. Content of test.py:
from scipy import special
print "Hello!"
Run from command line:
>python test.py
- CRASH! >:/
Any ideas how to get this package loaded? Or how to get Bessel modified function of first kind of any real order otherwise?