无法使用pip安装timeit。我怎样才能解决这个问题?

时间:2014-05-16 15:16:46

标签: python pip timeit

我正在尝试安装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

3 个答案:

答案 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