Conda-静默地安装软件包

我试图自动化的过程中建立一个开发环境与熊猫软件包使用 conda。

我安装了 conda,创建并激活了一个开发环境。当我试图按照以下方式安装软件包时,我注意到有一个提示符,用户必须输入 Y 或 N (Proceed ([ y ]/n) ?)才能顺利进行安装。

$ conda install pandas
Fetching package metadata: ....
Solving package specifications: ..................
Package plan for installation in environment /home/miniconda2/envs/pandas_env:


The following packages will be downloaded:


package                    |            build
---------------------------|-----------------
libgfortran-1.0            |                0         170 KB
openblas-0.2.14            |                3         3.5 MB
numpy-1.10.2               |           py27_0         5.9 MB
pytz-2015.7                |           py27_0         174 KB
six-1.10.0                 |           py27_0          16 KB
python-dateutil-2.4.2      |           py27_0         219 KB
pandas-0.17.1              |      np110py27_0        12.4 MB
------------------------------------------------------------
Total:        22.3 MB


The following NEW packages will be INSTALLED:


libgfortran:     1.0-0
numpy:           1.10.2-py27_0
openblas:        0.2.14-3
pandas:          0.17.1-np110py27_0
python-dateutil: 2.4.2-py27_0
pytz:            2015.7-py27_0
six:             1.10.0-py27_0


Proceed ([y]/n)? y


Fetching packages ...
libgfortran-1. 100% |###################################################################################################################################################################| Time: 0:00:00 457.23 kB/s
openblas-0.2.1 100% |###################################################################################################################################################################| Time: 0:00:02   1.68 MB/s
numpy-1.10.2-p 100% |###################################################################################################################################################################| Time: 0:00:02   2.42 MB/s
pytz-2015.7-py 100% |###################################################################################################################################################################| Time: 0:00:00 388.35 kB/s
six-1.10.0-py2 100% |###################################################################################################################################################################| Time: 0:00:00 224.69 kB/s
python-dateuti 100% |###################################################################################################################################################################| Time: 0:00:00 493.15 kB/s
pandas-0.17.1- 100% |###################################################################################################################################################################| Time: 0:00:04   3.24 MB/s
Extracting packages ...
[      COMPLETE      ]|######################################################################################################################################################################################| 100%
Linking packages ...
[      COMPLETE      ]|######################################################################################################################################################################################| 100%

我如何覆盖这些提示以便安装以静默方式进行?我尝试使用-f 标志,但似乎没有使用 conda install 命令。

先谢谢你!

67655 次浏览

Used $conda install -y pandas and it installed without any prompts (see documentation).

I suggest not to pass the confirmation process.

because it always has important info regarding this installation(which package will be updated and which dependency package will be installed and which package will be downgraded)

I once corrupt my environment due to not notice the update some of the package and took a long time to figure out some package need to stay in a older version to make some other package run properly.And that confirmation details will always makes you informed and tell you where to debug once you corrupt your package environment after installation

Anyway, here is the solution. Just use -y flag :

conda install -y PACKAGE_NAME

One-time Use

-y, --yes option.

# e.g. No.1
conda create -n myenv python=3.6 -y


# e.g. No.2
# install into a specific environment
conda install -n myenv requests -y
# install into the "base" env
conda install flake8 --yes

Script Use

Warning. This method confirms any type of prompt.

export CONDA_ALWAYS_YES="true"


# confirm all following "conda" commands
conda create -n myenv
conda install -n myenv requests
# ...


# Disable yes to all
unset CONDA_ALWAYS_YES

You may need to check How to activate conda env through shell script.


Environment Specific Use

Warning. This method confirms any type of prompt.

Enable "yes" to any prompt within current active env.

# enable yes to all in current env
conda config --env --set always_yes true


# disable it in current env
conda config --env --remove always_yes