我正在尝试安装"Userful MultiSeat-X64-5.0.1...“在Ubuntu 13.04 x64中,并在安装结束时遇到以下错误:
File "<string>", line 6, in <module>
ImportError: No module named Crypto.Cipher此消息意味着没有pycrypto模块。
下面是我应该如何安装它:
pip install pycrypto但问题是userful5需要python2.6才能工作,而ubuntu13.04默认使用python2.7。我已经安装了python2.6,但是我不知道如何为它安装pycrypto模块。
pip install pycrypto返回:
Requirement already satisfied (use --upgrade to upgrade): pycrypto in /usr/lib/python2.7/dist-packages据我所知,这个模块已经安装在python2.7中了,但是我如何才能将它安装到python2.6中呢?
发布于 2013-05-16 15:37:44
您应该对python2.6 (或easy_install)使用pip
pip-2.6 install pycrypto使用easy_install获取pip-2.6
easy_install-2.6 pip
pip-2.6 install pycryptohttps://stackoverflow.com/questions/16581278
复制相似问题