我正在尝试在Ubuntu 13.04 x64中安装“Userful MultiSeat-X64-5.0.1 ...”,并在安装结束时遇到以下错误:
File "<string>", line 6, in <module>
ImportError: No module named Crypto.Cipher
此消息表示没有pycrypto模块。
我应该如何安装它:
pip install pycrypto
但问题是userful5需要python 2.6才能工作,ubuntu 13.04使用python 2.7作为默认值。我已经安装了python 2.6,但我不知道如何为它安装pycrypto模块。
pip install pycrypto
返回:
Requirement already satisfied (use --upgrade to upgrade): pycrypto in /usr/lib/python2.7/dist-packages
据我了解,此模块已安装在python 2.7中 但是如何将它安装到python 2.6?
答案 0 :(得分:0)
你应该使用pip for python2.6(或easy_install)
pip-2.6 install pycrypto
使用easy_install获取pip-2.6
easy_install-2.6 pip
pip-2.6 install pycrypto