无法安装json-regex-difftool

时间:2015-08-18 18:35:16

标签: python pip

我尝试了以下链接,但无法安装此软件包。

我收到以下错误:

  

E:无法找到包json-regex-difftool-0.1   E:找不到任何正则表达式'json-regex-difftool-0.1'

的包

https://pypi.python.org/pypi/json-regex-difftool/0.1

1 个答案:

答案 0 :(得分:1)

您没有指定版本号。只需使用

$ pip install json-regex-difftool

您可以使用pip search

检查其存在
$ pip search json-regex-difftool
json-regex-difftool     - A tool for doing a comparison or difference of JSON documents with regular expression support

如果您特别需要版本0.1,则可以在命令行中指定

$ pip install json-regex-difftool==0.1