Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Re: ERROR:root:code for hash md5 was not found (http://www.velocityreviews.com/forums/t957248-re-error-root-code-for-hash-md5-was-not-found.html)

dieter 02-04-2013 08:25 AM

Re: ERROR:root:code for hash md5 was not found
 
Ibad Kureshi U0850037 <U0850037@hud.ac.uk> writes:

> I am bit new to python and am struggling to install NumPy and SciPy on to Python 2.7. Based on my understanding I believe that the problem is with my Python install rather than the way I am installing NumPy. I have seen only two other threads that deal with this issue but both threads just end with no solutions.
>
> I am on a CENTOS 5.8 system. With python 2.7 installed from source in a self contained folder. I am using environment modules to manage the different versions of python.
>
> When I invoke the NumPy installer I get the following:
>
>
> python setup.py build --fcompiler=gnu95
> Running from numpy source directory.ERROR:root:code for hash md5 was not found.
> Traceback (most recent call last):
> File "/apps/libs/python/2.7.3/lib/python2.7/hashlib.py", line 139, in <module>


This likely indicates some problem with "openssl" support:
on some platforms, "hashlib" delegates to the "openssl" libraries.

As a first step, I would verify that the "openssl" development
package (on OS, not Python level) is installed. If not, install it.
Then regenerate your local Python and check whether the problem
has disappeared.



All times are GMT. The time now is 06:46 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57