2015-07-20 2 views
4

Я работаю над модулем python, я размещаю его на Github.pip install github repository failed: Нет файлов/каталогов

Для теста я попытался установить его с помощью pip.

Я пробовал несколько способов, которые я видел в this question и this question.

Everytime я получаю сообщение об ошибке от бега:

pip install git+git://github.com/amiceli/i2c-module 

И вывод:

Collecting git+git://github.com/amiceli/i2c-module 
Cloning git://github.com/amiceli/i2c-module to /tmp/pip-HbjLru-build 
No files/directories in /tmp/pip-HbjLru-build/pip-egg-info (from PKG-INFO) 

Или

pip install https://github.com/amiceli/i2c-module 

Выход:

Collecting https://github.com/amiceli/i2c-module 
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90:  

InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. 
For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. 
InsecurePlatformWarning 
Downloading https://github.com/amiceli/i2c-module 
- 36kB 328kB/s 
Cannot unpack file /tmp/pip-3Qo8KK-unpack/i2c-module (downloaded from /tmp/pip-KnZ537-build, content-type: text/html; charset=utf-8); cannot detect archive format 
Cannot determine archive format of /tmp/pip-KnZ537-build 

Или:

pip install git+git://github.com:amiceli/i2c-module.git 

Выход:

Collecting git+git://github.com:amiceli/i2c-module.git 
Cloning git://github.com:amiceli/i2c-module.git to /tmp/pip-d7KPkA-build 
fatal: unable to connect to github.com: 
github.com: Servname() n'est pas support?e pour ai_socktype 

Complete output from command git clone -q git://github.com:amiceli/i2c-module.git /tmp/pip-d7KPkA-build: 

---------------------------------------- 
Command "git clone -q git://github.com:amiceli/i2c-module.git /tmp/pip-d7KPkA-build" failed with error code 128 in None 

EDIT

Я новую ошибку. Я установил модуль, он работает.

Но когда я пытаюсь импортировать его, у меня есть No module named error.

Когда я пытаюсь pip freeze Я могу видеть модуль в списке.

ответ

Смежные вопросы