将软件包安装到多个/所有conda环境中? [英] Install a package into multiple/all conda environments?

查看:233
本文介绍了将软件包安装到多个/所有conda环境中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用conda来针对不同版本的python,numpy等运行测试,但是python / numpy的所有组合都有一些共同的依赖性。

I'm using conda to run tests against different versions of python, numpy, etc., but there are some common dependencies for all combinations of python/numpy. Is there a way to install such packages into all conda environments, or do I have to specify each by hand?

推荐答案

您可以在 conda env list 的输出上运行shell循环。例如:

You can run a shell loop over the output of conda env list. For example:

for env in $(conda env list | cut -d" " -f1 | tail -n+4); do conda install -n $env XXXXXX; done

这篇关于将软件包安装到多个/所有conda环境中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆