conda install pkg-config R install.packages("systemfonts") 接着安装devtools缺的其它几个依赖包,估计是和systemfonts一样的问题,解决了systemfonts的问题后,其它几个包也均安装成功 install.packages("textshaping") install.packages("ragg") install.packages("pkgdown") #缺的依赖包装完后,再次安装devtools inst...
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 config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/ conda config --set show_channel...
info/git info/recipe/0001-Unvendor-dependencies-use-pkg-config-instead.patch info/recipe/meta.yaml info/recipe/conda_build_config.yaml info/licenses/COPYING bin/opsds info/recipe/meta.yaml.template info/test/run_test.sh info/recipe/build.sh 一些安装配置文件而已,并没有所需要的所有依赖,所以想通...
修改下载源 首先查看当前conda的下载源 conda config --show 由于国内无法访问很多国外网站导致下载一些包...
安装包packages 一旦激活了环境,你就可以使用conda和pip在当前环境下安装你所需要的包。在conda环境中,不建议使用pip。 使用conda 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 ...
这里就介绍下miniconda的安装,anaconda是类似的。 方法一:官网直接下载 minicoda下载地址 根据自己的系统选择合适的链接下载安装包。 mac系统分为bash和pkg。pkg就是安装包安装,像安装其他东西一样,而bash会下载一个文件,要通过在终端执行 bash (下载的文件所在路径)来执行安装。
一次性安装多个包 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...
1、找到conda安装位置,以/usr/local环境为例子,生成jupyter 密码设置 /usr/local/anaconda/bin/jupyter notebook password 生成密码后将json文件中的加密密码添加到config文件 c.NotebookApp.password = u'sha1:xxxxxxxxxxxxxxxxx' 2、修改config文件 端口 禁止密码修改 启动路径 ...
conda config--add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ # 设置安装时显示源地址, 方便安装时知道包来自哪个源 conda config--setshow_channel_urls yes # 查看 conda 基本信息 # 查看 conda 版本信息 condainfo# 更新 conda 版本 ...