python中的进口lib scrypt失败



当我尝试从Python中导入python的Scrypt Lib时,我使用PIP进行了错误消息是:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:Python27libsite-packagesscrypt.py", line 11, in <module>
    _scrypt = cdll.LoadLibrary(imp.find_module('_scrypt')[1])
File "C:Python27libctypes__init__.py", line 431, in LoadLibrary
    return self._dlltype(name)
File "C:Python27libctypes__init__.py", line 353, in __init__
    self._handle = _dlopen(self._name, mode)
WindowsError: [Error 193] %1 nÒo Ú um aplicativo Win32 vßlido

在英语中,消息" WindowsError:[错误193]%1nòoúum aplicativo win32vßlido"是指它不是有效的win32应用程序

在另一台计算机中,当我尝试导入相同的lib时,有错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:Python27libsite-packagesscrypt.py", line 11, in <module>
    _scrypt = cdll.LoadLibrary(imp.find_module('_scrypt')[1])
  File "C:Python27libctypes__init__.py", line 440, in LoadLibrary
    return self._dlltype(name)
  File "C:Python27libctypes__init__.py", line 362, in __init__
    self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] NÒo foi possÝvel encontrar o m¾dulo especificado

在英语中,消息"nòofoiposevel encontrar om¾duloespecificado"表示无法找到模块

安装OpenSSL将在Windows上解决您的问题。

相关内容

  • 没有找到相关文章

最新更新