我需要使用conda安装以下多个软件包。我不知道什么是康达锻造?有的使用conda锻造,有的则不使用。是否可以将它们安装在一行中而不逐条安装?谢谢
conda install -c conda-forge dash-daq
conda install -c conda-forge dash-core-components
conda install -c conda-forge dash-html-components
conda install -c conda-forge dash-bootstrap-components
conda install -c conda-forge dash-table
conda install -c plotly jupyter-dash
发布于 2022-05-09 00:53:47
为什么某些软件包必须通过conda forge安装:
Conda官方存储库只提供了几个经过验证的包。通过pip可以获得的python包的很大一部分是通过社区领导的称为conda-forge的通道安装的。您可以访问他们的站点来了解更多关于它的信息。
如何在一行中安装多个软件包?
安装多个包的推荐方法是创建一个.yml
文件并将其提要给conda。您也可以为每个包指定版本号。
下面的示例文件可以通过conda install --file
提供给conda
appdirs=1.4.3
asn1crypto=0.24.0
...
zope=1.0
zope.interface=4.5.0
若要为此environment.yml
文件中的每个包指定不同的通道,可以使用::
语法。
dependencies:
- python=3.6
- bagit
- conda-forge::beautifulsoup4
发布于 2022-05-09 00:50:02
我相信你可以把它们一一列出来:
conda install -c conda-forge dash-daq dash-core-components
https://stackoverflow.com/questions/72166020
复制相似问题