Using a pip requirements file in a conda yml file throws AttributeError: #39;FileNotFoundError#39;(在Conda YML文件中使用pip要求文件会引发AttributeError:#39;FileNotFoundError#39;)
问题描述
我有一个requirements.txt
赞
numpy
和包含
的environment.yml
# run via: conda env create --file environment.yml
---
name: test
dependencies:
- python>=3
- pip
- pip:
- -r file:requirements.txt
当我随后运行conda env create --file environment.yml
时,我收到
Pip子进程输出:
Pip子进程错误: 错误:异常:
<;.PIP>;中的错误回溯
AttributeError:"FileNotFoundError"对象没有属性""Read""
失败
CondaEnvException:PIP失败
调用pip的方式也很奇怪,就像错误发生前报告的那样:
['$HOME/.conda/envs/test/bin/python', '-m', 'pip', 'install', '-U', '-r', '$HOME/test/condaenv.8d3003nm.requirements.txt']
(我将我的主路径替换为$HOME
)
注意requirements.txt
的奇怪扩展。
有什么想法吗?
推荐答案
21.2.1中对管道行为的更改
A recent change in the Pip code已将其行为更改为在file:
URI语法方面更加严格。As pointed out由Pypa成员和Pip开发人员根据the RFC8089 specification,语法file:requirements.txt
不是有效的URI。
相反,必须完全放弃file:
方案:
name: test
dependencies:
- python>=3
- pip
- pip:
- -r requirements.txt
或提供有效的URI,即使用绝对路径(或本地文件服务器):
name: test
dependencies:
- python>=3
- pip
- pip:
- -r file:/full/path/to/requirements.txt
# - -r file:///full/path/to/requirements.txt # alternate syntax
这篇关于在Conda YML文件中使用pip要求文件会引发AttributeError:';FileNotFoundError';的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在Conda YML文件中使用pip要求文件会引发AttributeError:';FileNotFoundError';
基础教程推荐
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01