想要使用Python下载jQuery,但无法下载

时间:2017-04-16 14:58:17

标签: jquery python-2.7

我尝试使用pip install jquery安装jQuery,但收到此错误:

> pip install jquery

Collecting jquery
  Downloading jquery-1.2.3.zip
    Complete output from command python setup.py egg_info:

    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/tmp/pip-build-id644a/jquery/setup.py", line 2, in <module>
        from turbogears.finddata import find_package_data
    ImportError: No module named turbogears.finddata

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-jvdejr/jquery/

1 个答案:

答案 0 :(得分:1)

jQuery没有Python包发行版。您在问题中尝试访问的是this,与另一个包TurboGears相关。

如果可能,请不要使用pip install来获取jQuery。请改为使用npm(需要NodeJS):

$ npm install -g jquery

bower

$ bower install jquery

或者只是从here下载最新的发布内容。