ga('set', 'anonymizeIp', 1);
Categories: CodingPython

[python] pycrypto on Windows Server 2008/2016

Share

本文說明在Windows Server 2008/2016的 pycrypto 環境設定。

環境

OS: Windows Server 2008/2016
python: 3.4
pycrypto: 2.6.1

安裝python 3.4

因為編譯環境需求,我們使用python3.4。
Download Page of Python 3.4

python安裝過程直接勾選Add python3.4 to PATH,
這樣就不用再去系統環境設定修改。

安裝後請重新開機。

安裝pycrypto Library

請到你的python3.4安裝路徑,
預設路徑為C:\Python34。

路徑下有個Script資料夾,
使用cmd在該路徑下執行pip指令:
C:\Python34\Scripts>pip install pycrypto

執行過程會出現一大堆錯誤訊息,
請參考以下解決方法。

下載pycrypto預編譯版本

版本列表下載連結

這邊使用的是pycrypto-2.6.1.win-amd64-py3.4.msi,
下載下來後安裝即可。

最後請再次執行
pip install pycrypto

Jys

Published by
Jys

Recent Posts

[python] Flask Create RESTful API

This article gi... Read More

3 年 前發表

[Javascript] 新增/刪除JSON中key值

在web訊息交換常會需要對JS... Read More

3 年 前發表

[JAVA] SQL Server Connection

本文介紹JAVA連線SQL s... Read More

3 年 前發表