使用mac自带的python环境,python版本是2.7.10
运行后出现了如下信息:
Traceback (most recent call last):
File "/Users/TracyW/Documents/test.py", line 3, in <module>
import coockielib
ImportError: No module named coockielib
在终端输入easy_install cookielib
得到:
bogon:~ TracyW$ easy_install cookielib
Searching for cookielib
Reading https://pypi.python.org/simple/cookielib/
Couldn't find index page for 'cookielib' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
error: ('The read operation timed out',)
easy_install应该是没有问题的,用它下载beautifulsoup4成功了
求大神们指点一下要如何成功import cookielib?
==========================================
更新:谢谢各位,最后发现原因是把cookielib拼错了,好惭愧。。。
Problem point
First of all, if you observe the log of your installation, you will find that it is not installed at all and there are errors in it.
Secondly, this is a standard lib. In theory, you don’t need to install it manually
Third, there is this paragraph in the Python file:
was renamed to
http.cookiejar
in Python3, please pay attention if you use Python3.How to import
in Python2:
in Python3:
Questions I answered: Python-QA
Try
import http.cookies
or delete the generated pyc file