如何从Github下载模块

时间:2017-05-26 17:06:08

标签: python python-import

我是python的新手,我在从GitHub下载模块时遇到问题:https://github.com/petercerno/good-morning

我在网上寻找解决方案,但我尝试的每个解决方案都不起作用。我试过了:

pip install https://github.com/petercerno/good-morning.git

我收到错误消息,"无法解压文件" &安培; "无法确定存档格式。"我不知道为什么会收到这个错误。

1 个答案:

答案 0 :(得分:3)

只需将good_download.pygood_morning.py保存到与Python脚本相同的目录中,然后导入它们:

import good_morning
import good_download
# do stuff!