Hey list, First thanks for the great work. I am planning to use skimage for some fluorescence microscopy analysis. Today I installed from the git repository and an error occurred when compiling: File "/home/guillaume/Python/lib/scikits-image/skimage/util/ dtype.py", line 20, in <module> in <module> np.float16, np.float32, np.float64) AttributeError: 'module' object has no attribute 'float16' taking out 'float16' in the _supported_types tuple solves the issue (at least it compiles), but I don't know whether it could have consequences later on. _supported_types = (np.uint8, np.uint16, np.uint32, np.int8, np.int16, np.int32, #np.float16, ### Commented this out... np.float32, np.float64) I am running Python 2.7.2+ with numpy 1.5.1 (that is what you get with apt-get install python-numpy) Thanks...
Hi Guillaume On Fri, Feb 10, 2012 at 1:55 AM, Guillaume <guillaume@mitotic-machine.org> wrote:
First thanks for the great work. I am planning to use skimage for some fluorescence microscopy analysis.
That's great! We'd love to see what you do once you've got some working examples.
Today I installed from the git repository and an error occurred when compiling:
File "/home/guillaume/Python/lib/scikits-image/skimage/util/ dtype.py", line 20, in <module> in <module> np.float16, np.float32, np.float64) AttributeError: 'module' object has no attribute 'float16'
The float16 data-type was introduced in NumPy 1.6, and while we currently list NumPy 1.4 as a dependency, but we're going to have to up that to 1.6 (I think some of it is being used in the data type conversion code now, e.g.). I hope this isn't too much of an inconvenience! Regards Stéfan
participants (2)
-
Guillaume
-
Stéfan van der Walt