我试图安装timeit,但这是我得到的:
$ sudo pip install timeit
Downloading/unpacking timeit
Could not find any downloads that satisfy the requirement timeit
No distributions at all found for timeit
Storing complete log in /Users/username/.pip/pip.log
timeit
自2.3起成为Python标准库的一部分。应该不需要通过pip安装它。
这是因为timeit是一个内置的Python模块。你不需要使用pip。
https://docs.python.org/2/library/timeit.html下面是Python包含的模块列表。只要你安装了Python,你应该有这些:https://docs.python.org/2/library/
不需要单独安装。timeit在python本身中可用。它在python的第二版和第三版中都可用。你可以在这里找到timeit文档