2016-10-22 71 views
1

每次導入回購我嘗試導入該回購問題從GitHub

https://github.com/ArduPilot/pymavlink/blob/7b0d51cca7e75b3cf84f5dbb74e76f727816e50d/mavutil.py 

使用

pip install https://github.com/ArduPilot/pymavlink.git 

不過,我得到這個錯誤以下。

Collecting https://github.com/ArduPilot/pymavlink.git 
    Downloading https://github.com/ArduPilot/pymavlink.git 
    Cannot unpack file c:\users\mike\appdata\local\temp\pip-l_8clc-unpack\pymavlink.git (downloaded from c:\users\mike\appdata\local\temp\pip-nww8fs-build, content-type: text/html; charset=utf-8); cannot detect archive format 
Cannot determine archive format of c:\users\mike\appdata\local\temp\pip-nww8fs-build 
+0

http://stackoverflow.com/questions/8247605/configuring-so-that-pip-install-can-work-from-github – Jameson

回答

3

嘗試pip install git+https://github.com/ArduPilot/pymavlink.git。這告訴pip它是一個git存檔。
否則,你總是可以只直接使用GitHub的檔案:pip install https://github.com/ArduPilot/pymavlink/archive/master.zip

+0

第一一個給我一個錯誤: –

+0

第一個給我一個錯誤:無法找到命令'git',第二個給我一個ImportError的錯誤:沒有名爲future的模塊;命令「python setup.py egg_info」失敗,錯誤代碼爲1 –

+0

對於第一個,你沒有安裝git或在PATH中。 –