代码之家  ›  专栏  ›  技术社区  ›  Nihal subbu

如何使用pip安装github包链接

  •  0
  • Nihal subbu  · 技术社区  · 6 年前

    我想在windows、python 3.6上使用pip安装此链接

    https://github.com/charlesw/tesseract-vs2012

    输出:

    C:\Users\yolo>pip install git+https://github.com/charlesw/tesseract-vs2012.git
    Collecting git+https://github.com/charlesw/tesseract-vs2012.git
      Cloning https://github.com/charlesw/tesseract-vs2012.git to c:\users\yolo\appd
    ata\local\temp\pip-o2445u8s-build
        Complete output from command python setup.py egg_info:
        Traceback (most recent call last):
          File "<string>", line 1, in <module>
          File "c:\python36\lib\tokenize.py", line 452, in open
            buffer = _builtin_open(filename, 'rb')
        FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\yolo\\Ap
    pData\\Local\\Temp\\pip-o2445u8s-build\\setup.py'
    

    1 :

    2 回复  |  直到 6 年前
        1
  •  2
  •   phd    6 年前

    您指向的存储库缺少 setup.py 因此,它不能与一起安装 pip . 它也过时了,被 https://github.com/tesseract-ocr/tesseract .

    请参见 compilation instructions for w32 .

        2
  •  2
  •   Shinra tensei    6 年前

    尝试使用升级pip pip install --upgrade pip ,然后再次尝试安装所需内容。

    相关: https://github.com/tensorflow/tensorflow/issues/56