从https://conda.io/miniconda.html下载安装文件Miniconda2-latest-Linux-x86_64.sh,从命令行安装。有一些问题需要手动处理,比如许可证、安装路径和将二进制文件添加到$PATH中。我的问题是:有没有办法通过一个命令自动安装它?比如
bash Miniconda2-latest-Linux-x86_64.sh \
-license yes -install_path ~/miniconda \
-to-bash-profile yes发布于 2017-11-16 22:24:28
你可以做到
bash ~/miniconda.sh -b -p $HOME/miniconda-b用于批处理模式,其中包括接受许可证,使用-p时,您需要提供安装路径/前缀
Seen here
https://stackoverflow.com/questions/45686566
复制相似问题