<env_name> # 移除环境 conda remove -n <env_name> --all # 导出环境信息为yaml conda env export > environment.yaml # 列出所有环境 # 你当前的环境旁有一个*标识 conda env list # 显示环境信息 conda info conda info --envs # 设置channel权限 conda config --set channel_priority strict/...
About pkg-config Home: http://www.freedesktop.org/wiki/Software/pkg-config/ Package license: GPL-2.0-or-later Feedstock license: BSD-3-Clause Summary: Interface for querying installed libraries for use during compilation. Development: https://cgit.freedesktop.org/pkg-config Documentation: https:/...
conda create -n ENV_NAME#ENV_NAME为新建环境名称conda install PKG_NAME#PKG_NAME为安装包名称 二.实测好用的镜像源更新 最近清华的镜像源真的就是不稳定,这里找到了好用的镜像源推荐给大家。 可运行以下命令加入conda channels: conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/pkgs/main...
conda install pkg_name1=x.x.x pkg_name2=x.x.x 1. 使用pip pip install pkg_name1==x.x.x pkg_name2==x.x.x 1. 或者根据requirements.txt文件,安装多个包 pip install -r requirements.txt 1. 查看环境中安装的包 查看当前环境中的包 conda list 1. 查看指定环境中的包 conda list -n {env...
conda install --yes PKG1 PKG2 安装指定版本的包 conda install PKGNAME==3.1.4 # 例如 conda install selenium==4.3.0 配置管理 查看conda使用的源 conda config --show channels 增加源,解决下载慢的问题 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ ...
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/ # 设置搜索时显示通道地址 conda config --set show_channel_urls yes 查看是否添加成功可是用命令 conda config --show 在channels这个字段这里显示已经添加的源 channels:-https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/fr...
conda config --show channels 1. 2.conda 添加源 conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkg...
Meson 1.2 or 1.3 openssl 3.1 or 3.2 python 3.12 <--- this really seems to be the key pkg-config cannot be found with the error Found pkg-config 'perl D:\\bld\\gst-plugins-bad_1702220437032\\_build_env\\Library\\bin\\pkg-config' but it is Strawberry Perl and thus broken. Ignoring...
查看可以通过conda命令安装的包名,可以在网站查看http://docs.continuum.io/anaconda/pkg-docs.html # 查看当前环境下的已经安装的包$ conda list# 查找包$ conda search beautifulsoup4# 安装包到环境bunnies,不加--name时,默认安装到当前环境$ conda install--name bunnies beautifulsoup4 ...
再写自动运行的脚本时会很有用conda install --yes PKG1 PKG2# 输出conda的配置conda config --show...