到目前为止,整个论坛似乎只有一个关于此错误的问题。
当通过Python 2.7.11在E-Pyo中运行任何pyo示例时,我收到此错误:
File "C:\Python27\lib\site-packages\pyolib\_core.py", line 22, in <module>
import random, os, sys, inspect, tempfile
File "C:\Python27\lib\random.py", line 49, in <module>
import hashlib as _hashlib
File "C:\Python27\lib\hashlib.py", line 138, in <module>
_hashlib.openssl_md_meth_names)
AttributeError: 'module' object has no attribute 'openssl_md_meth_names'
我为E-Pyo安装了python 2.7.11,我已经使用了3.42所以我相信错误可能源于此。
有些搜索让我检查了与hashlib相关的sys路径:
import sys
print sys.path
import _hashlib
print _hashlib.__file__
import hashlib
print hashlib.__file__
输出:
['', 'C:\\Program Files\\Csound6_x64\\bin', 'C:\\Python27', 'C:\\Python27\\pytho
n27.zip', 'C:\\Python27\\DLLs', 'C:\\Python27\\lib', 'C:\\Python27\\lib\\plat-wi
n', 'C:\\Python27\\lib\\lib-tk', 'C:\\Python27\\lib\\site-packages']
C:\Python27\DLLs\_hashlib.pyd
C:\Python27\lib\hashlib.pyc
我不太清楚如何解释这个,因为我对编程很新。
所以,问题是,我该如何纠正这个错误?
谢谢!
我正在使用运行Windows的ACER F550L英特尔酷睿i7-4500U 1.8 GHZ
答案 0 :(得分:0)
尝试使用:
setup.py install
而不是:
python setup.py install