我正在尝试安装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
答案 0 :(得分:4)
timeit
是自2.3以来Python标准库的一部分。不需要通过pip安装它。
答案 1 :(得分:3)
那是因为timeit是一个内置的Python模块。你不需要使用pip。
https://docs.python.org/2/library/timeit.html
这是Python附带的模块列表。只要安装了Python,就应该有:https://docs.python.org/2/library/
答案 2 :(得分:1)
您不需要单独安装。 timeit 在 python 中可用。它在第二版和第三版的 python 中都可用。您可以找到 timeit 文档 here