gpt4 book ai didi

python - 无法从github安装python库

转载 作者:太空宇宙 更新时间:2023-11-04 08:48:48 25 4
gpt4 key购买 nike

我的操作系统是 OSX 10.10.5,我使用 python 的 Anaconda 发行版。我正在尝试从 github 安装以下库:https://github.com/gmum/pykernels

当我尝试使用 pip 安装时:

pip install git+https://github.com/gmum/pykernels.git

我收到以下错误:

Collecting git+https://github.com/gmum/pykernels.git
Cloning https://github.com/gmum/pykernels.git to /var/folders/dd/98c207155h57757dtxkyp44r0000gn/T/pip-x7zo1w22-build
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Conda3/anaconda/lib/python3.5/tokenize.py", line 454, in open
buffer = _builtin_open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: '/var/folders/dd/98c207155h57757dtxkyp44r0000gn/T/pip-x7zo1w22-build/setup.py'

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /var/folders/dd/98c207155h57757dtxkyp44r0000gn/T/pip-x7zo1w22-build/

Pip 安装适用于其他库,我的设置工具也是最新的。

最佳答案

问题是,该库没有 setup.py 文件。 pip 执行/跟随此文件。因此无法使用 pip 安装该库。但是,您可以下载该库(repo 中的 pykernels 文件夹)并将其放入当前文件夹,或者将其路径添加到 sys.path,如下所示:

import sys
sys.path.append("Path to pykernels repo")

一定要像这样使用 pip 安装它们的依赖项:

pip install numpy scipy scikit-learn

然后您可以在脚本中使用import pykernels

编辑:setup.py 现已集成到存储库中,现在您只需使用 pip:

pip install git+https://github.com/gmum/pykernels.git

关于python - 无法从github安装python库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37482104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com