Python項目中需要將一些JSON數據由Windowns服務器傳至Linux服務器,就找了一個開源模塊 https://github.com/jbardin/scp.py,可是太難安裝了。
開始說需要一個C編譯器,需要下載了MinGW,安裝至:D:MinGW,將D:MinGWin添加至環境變量,再裝:python setup.py install,又提示
'chmod' is not recognized as an internal or external command
這個玩笑開的,明顯這是Linux下的命令。
那就繞一下吧,先將其編譯鏈接為Windows安裝程序:
python setup.py build -c mingw32
python setup.py bdist_wininst
然後在SCP的解壓目錄下會出現個dist目錄,進入該目錄會發現一個文件:scp-0.5.1.win32.exe
雙擊之,next直至安裝成功。
測試:
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on wi
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import scp
>>>
好,世界依舊美好。