Anaconda
则是一个打包的集合,里面预装好了
conda
、某个版本的
python
、众多
packages
、科学计算工具等等,就是把很多常用的不常用的库都给你装好了。
Miniconda
,顾名思义,它只包含最基本的内容——
python
与
conda
,以及相关的必须依赖项,对于空间要求严格的用户,
Miniconda
是一种选择。就只包含最基本的东西,其他的库得自己装。
使用 root 用户安装。下载下来 sh 文件后,直接
sh **.sh
然后会出现一些提示,当出现类似于下面的场景后,是让你填写安装路径
Please answer 'yes' or 'no'
MiniAnaconda3 will noe be installed into this location
/home/root/miniconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/root/miniconda3] >>> 这里面填写你要安装的路径
在
linux
下安装第三方多用户使用的共享软件一般都按在
/usr/local
目录下,输入好对应的路径回车就可以。
比如我的是
/usr/local/miniconda3
然后,配置
/etc/profile
文件,在该文件最后加入
export PATH=/usr/local/miniconda3/bin:$PATH
如果不想重启可以使用
source /etc/profile
这样子就安装好了!多用户都可以使用了。