使用:安装了python的Ubuntu 13.10
Python 2.7.5+.
[GCC 4.8.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import github3
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named github3
>>>
尝试安装github3.py获取&#34; ImportError:&#34;
我不知道发生了什么事。我是python的新手并安装它以尝试学习这门语言。如果有人有意见,请告诉我。
答案 0 :(得分:1)
您需要先安装 github3.py 库,然后才能导入它。
从你的linux shell试试:
sudo pip install github3.py
(只有你是管理员,才能在系统范围内安装)
之后应该可以使用。
答案 1 :(得分:-1)
pip install github3.py
或
git clone git://github.com/sigmavirus24/github3.py.git github3.py
cd github3.py
python setup.py install