如何在使用 PyCharm 4 创建的 Windows Vista64 virualenv 中安装 pycrypto
How to install pycrypto in a Windows Vista64 virualenv created with PyCharm 4
我在 Windows Vista 64 机器上用 PyCharm 4 创建了一个 virtualenv。我是 Windows.
上这种设置的新手
在 Ubuntu 上,我只需要输入 source bin/activate。我试过了,还是不行。
我遇到了麻烦:
- 激活 PyCharm 在 Windows
上创建的 VirtualEnv
- 仅在 VirtualEnv 中安装 Python 2.7 64-bit version of Pycrypto。
- 导航到虚拟环境中的
Scripts
文件夹。
- 输入
activate.bat
激活环境
- 下载 64 位版本的 pycrypto found here
- 将 pycrypto
.exe
文件复制到虚拟环境的 Scripts
文件夹中。
- 输入
easy_install <name_of_your_pycrypto_install_file>.exe
安装
答案是通过查看 psycopg 64 virtualenv 安装说明找到的:http://www.stickpeople.com/projects/python/win-psycopg/
我在 Windows Vista 64 机器上用 PyCharm 4 创建了一个 virtualenv。我是 Windows.
上这种设置的新手在 Ubuntu 上,我只需要输入 source bin/activate。我试过了,还是不行。
我遇到了麻烦:
- 激活 PyCharm 在 Windows 上创建的 VirtualEnv
- 仅在 VirtualEnv 中安装 Python 2.7 64-bit version of Pycrypto。
- 导航到虚拟环境中的
Scripts
文件夹。 - 输入
activate.bat
激活环境 - 下载 64 位版本的 pycrypto found here
- 将 pycrypto
.exe
文件复制到虚拟环境的Scripts
文件夹中。 - 输入
easy_install <name_of_your_pycrypto_install_file>.exe
安装
答案是通过查看 psycopg 64 virtualenv 安装说明找到的:http://www.stickpeople.com/projects/python/win-psycopg/