anaconda search&anaconda show | conda 检索包资源安装指定版本包指定源安装命令package

conda issuehttp://t.csdnimg.cn/ndZZK

目录

常规安装

检索包资源

获取指定包的安装源&安装指令

安装指定包


常规安装

conda 常规安装xxx包

复制代码
conda install xxx

conda install有可能会受限于channel导致报错PackagesNotFoundError: The following packages are not available from current channels。

检索包资源

通过anaconda search检索包资源以albumentations为例

复制代码
anaconda search -t conda albumentations

可以看到检索到了十项albumentations包相关的资源,包括对应的包版本、类型、平台等信息

获取指定包的安装源&安装指令

通过anaconda show获取指定包的安装源信息和安装指令,例如这里选择了合适的名为fastchan/albumentations的包资源

复制代码
anaconda show  fastchan/albumentations

安装指定包

通过提供的指令安装指定包

复制指令在所需环境中粘贴/输入即可完成安装

复制代码
conda install --channel ('https://conda.anaconda.org/%s', 'fastchan') albumentations
相关推荐
buxiangshui_cd20 小时前
Conda命令
开发语言·python·conda
DogDaoDao2 天前
【第 04 篇】列表与元组 —— 序列类型核心详解
人工智能·python·深度学习·神经网络·机器学习·conda·numpy
Kobebryant-Manba5 天前
安装cuda
pytorch·python·深度学习·conda·numpy
zlkingdom6 天前
Jetson Orin开发板,在conda环境中直接实现Pytorch的GPU加速
人工智能·pytorch·conda·随笔·jetson orin
战斗强6 天前
RTX 5090 Grounded-SAM-2 实时 RTSP 跟踪部署指南
python·conda
zhangfeng11338 天前
htc 中minconda 明明安装了 Python 3.10显示 python 3.8 因为 `conda activate` 没有真正切换成功
开发语言·python·conda
H Journey9 天前
python包和项目管理工具uv、conda介绍
python·conda·uv
hyunbar12 天前
卸载 conda(太大) 安装 miniconda
conda
索西引擎12 天前
【LangChain 1.0】环境搭建指南:从 conda 到 uv 的现代化 Python 工程实践
python·langchain·conda