- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
How to list package versions available with conda有有用的答案,其中之一在 https://stackoverflow.com/a/47795843/257924它使用两个等号。 conda search -h
没有完全说明 MatchSpec 语法允许的内容,只给出了一些简单的例子。
比如我想查看python最新版本下有哪些包存在,对于一个叫jedi
的包.我不得不求助于实验和猜测来找到正确的语法,因为上面缺少 MatchSpec 语法的详细文档。我结束了:
$ condaw search 'jedi[build=py37*]' --json | grep '"build"'
"build": "py37_1",
"build": "py37_0",
"build": "py37_0",
"build": "py37_0",
"build": "py37_0",
$
--json
选项只是为了我可以找出什么关键字,例如
build
可能是语法的一部分。
-h
输出是唯一的。
最佳答案
有some (possibly outdated) documentation in the conda-build docs .但是,我仍然认为他们代码中的文档更清晰。它可以从激活的 中读取底座 环境使用
python -c "from conda.models.match_spec import MatchSpec; help(MatchSpec)"
或在
the GitHub repo .
MatchSpec
object 到字符串表示,而不是解析字符串的另一个方向,但它涵盖了所有的可能性。
The canonical string representation can generically be represented by
(channel(/subdir):(namespace):)name(version(build))[key1=value1,key2=value2]
where
()
indicate optional fields. The rules for constructing acanonical string representation are:
name
(i.e. "package name") is required, but its value can be '*'. Its position is always outside the key-value brackets.- If
version
is an exact version, it goes outside the key-value brackets and is prepended by==
. Ifversion
is a "fuzzy" value(e.g.1.11.*
), it goes outside the key-value brackets with the.*
left off and is prepended by=
. Otherwiseversion
isincluded inside key-value brackets.- If
version
is an exact version, andbuild
is an exact value,build
goes outside key-value brackets prepended by a=
.Otherwise,build
goes inside key-value brackets.build_string
is an alias forbuild
.- The
namespace
position is being held for a future conda feature.- If
channel
is included and is an exact value, a::
separator is ued betweenchannel
andname
.channel
can either be acanonical channel name or a channel url. In the canonical stringrepresentation, the canonical channel name will always be used.- If
channel
is an exact value andsubdir
is an exact value,subdir
is appended tochannel
with a/
separator. Otherwise,subdir
is included in the key-value brackets.- Key-value brackets can be delimited by comma, space, or comma+space. Value can optionally be wrapped in single or doublequotes, but must be wrapped if
value
contains a comma, space, orequal sign. The canonical format uses comma delimiters and singlequotes.- When constructing a :class:
MatchSpec
instance from a string, any key-value pair given inside the key-value brackets overrides anymatching parameter given outside the brackets.
build_number
track_features
features
url
md5
license
license_family
fn
fn
代表
f 文件
嗯。
MatchSpec
生成这些规范字符串的类:
>>> str(MatchSpec(name='foo', build='py2*', channel='conda-forge'))
'conda-forge::foo[build=py2*]'
>>> str(MatchSpec('foo 1.0 py27_0'))
'foo==1.0=py27_0'
>>> str(MatchSpec('foo=1.0=py27_0'))
'foo==1.0=py27_0'
>>> str(MatchSpec('conda-forge::foo[version=1.0.*]'))
'conda-forge::foo=1.0'
>>> str(MatchSpec('conda-forge/linux-64::foo>=1.0'))
"conda-forge/linux-64::foo[version='>=1.0']"
>>> str(MatchSpec('*/linux-64::foo>=1.0'))
"foo[subdir=linux-64,version='>=1.0']"
关于conda - 如何使用 conda MatchSpec?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57538225/
尝试使用命令 conda update conda 从终端更新 conda 时出现错误.它在说: Solving environment: failed UnsatisfiableError: The
在 conda 中,当我尝试安装软件包时,出现此错误: CorruptedEnvironmentError: The target environment has been corrupted. C
我想在一个特定的 conda 环境中安装带有 conda 的程序,并能够使用来自所有 conda 环境的相关命令。 我的目标是让学生在任何平台(尤其是 Windows)上安装 Mercurial(加上
我遇到了一个麻烦的问题。 我的 pip 和 /home/xxx/local/anacoda2/bin 的 python 都可以,但是 conda 仍然不起作用。当我在我的 ubuntu16.04 终端
我已经在普通机器上设置了 Conda 环境。它工作正常。我想在一台无法访问互联网的机器上克隆这个环境(我只能通过 SSH 进入)。 我最初的想法是压缩 Conda 留下的包缓存并将其移动到气隙机器上的
我想要两个环境:生产环境是测试环境的严格子集。我如何使用 Conda(或 micromamba)实现这一目标? 测试需要一些不需要捆绑在生产 docker 镜像中的额外实用程序。主要思想是确保生产安装
每次打开终端时都会显示以下代码行。 Traceback (most recent call last): File "", line 3, in ImportError: No module n
我尝试使用以下命令更新 conda: ~$ conda update conda 它输出以下消息: WARNING conda.base.context:use_only_tar_bz2(632):
如何仅列出 conda 中针对特定环境显式安装的软件包?有没有办法做到这一点? 最佳答案 @Sjlver 的评论链接到的页面( https://github.com/conda/conda/issue
conda 文档指定: conda clean [-h] [-y] [--dry-run] [--json] [--debug] [--verbose] [-q] [-a] [-i] [-l] [-t
当我克隆一个 Conda 环境时 conda create --name thenewenv --clone theorigenv 我注意到 theorigenv 的修订历史丢失了 conda act
我在 Conda 环境中安装了一堆软件包,包括带有 NVIDIA 工具包的 docker 容器和一些其他非 python 库。安装占用了大约 10 GB 的磁盘空间。但是当我删除 Conda 环境时,
documentation指出克隆以这种方式工作:conda create --name myclone --clone myenv但是,这将始终默认创建环境 myclone进入我几乎没有磁盘存储空间
这个问题在这里已经有了答案: Why are packages installed rather than just linked to a specific environment? (1 个回答)
How to list package versions available with conda有有用的答案,其中之一在 https://stackoverflow.com/a/47795843/2
后 conda update --all 我无法再启动 spyder。如果我在终端中运行 spyder,我会收到以下错误: /anaconda3/bin/pythonw: line 3: /anaco
对于给定的 conda包,我如何列出依赖它的包? 我最近在一个已经有 MPI (openmpi) 版本的大学集群上安装了 anaconda。 mpich2包和mpi4py与 anaconda 一起安装
创建虚拟环境时可以将路径/Users/nolan/miniconda/envs/更改为另一个路径吗?我希望它特定于我的项目目录。 (正如我们可以使用 virtualenv 所做的那样) $conda
激活 conda 环境时,conda 会记住之前激活的环境。例如,如果没有激活任何环境,则调用 conda activate foo 然后调用 conda deactivate 将导致没有任何环境处于
我使用 PyCharm 创建了一个带有 conda 解释器的项目。 Pycharm自动为其创建conda环境。不久之后,我意识到我想要该项目的另一个地点。因此我删除了项目文件夹。然后我意识到我要删除
我是一名优秀的程序员,十分优秀!