我在最新版本的Ubuntu上使用Python 3.3进行编程。我正在为涉及与Twitter一起工作的库的项目编写代码。这是我所拥有的终端的输出:
Traceback (most recent call last):
File "tryout.py", line 2, in <module>
import twitter
File "/home/owner/Documents/twitter/__init__.py", line 15, in <module>
from .stream import TwitterStream
File "/home/owner/Documents/twitter/stream.py", line 9, in <module>
from ssl import SSLError
File "/usr/local/lib/python3.3/ssl.py", line 60, in <module>
import _ssl # if we can't import it, let the error propagate
ImportError: No module named '_ssl'
我一直在寻找找到_ssl错误的解决方案,但似乎无法找到我可以遵循的解决方案。