ImportError: No module named github3 on ubuntu

ImportError: No module named github3 on ubuntu

使用:Ubuntu 13.10 安装 python

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 获取 "ImportError:"
我不知道发生了什么。我是 python 的新手,安装它是为了尝试学习这门语言。让我知道是否有人有意见。

您需要安装 github3.py 库才能导入它。

从你的 linux shell 尝试: sudo pip install github3.py(仅当您是管理员时才执行命令,以便在系统范围内安装它)

之后应该可以使用。

pip install github3.py

git clone git://github.com/sigmavirus24/github3.py.git github3.py

cd github3.py

python setup.py install

https://github3py.readthedocs.io/en/master/

与 : Kali 一起工作 Linux

目前 'github3' 模块无法在 python 2.7 版中工作... 我也收到这个错误!

└─$ python
Python 2.7.18 (default, Jul 14 2021, 08:11:37)
[GCC 10.2.1 20210110] 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

但是通过python3我成功走出了错误!

└─$ python3
Python 3.9.2 (default, Feb 28 2021, 17:03:44)
[GCC 10.2.1 20210110] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import github3
>>> exit()

很可能这个模块现在只兼容python 3....https://pypi.org/project/github3.py/

python3    

Python 3.9.10 (main, Feb 22 2022, 13:54:07) 
[GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.

>>> import github3
>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit
>>> exit()