如何下载并安装 miniconda?

如何下载并安装 miniconda?

我是一名全新的 Linux 用户,因此如果我遗漏了一些非常明显的信息,请告诉我。

我正在使用最新版本的 ubuntu,2004。

我尝试从他们的网站下载 miniconda(在软件应用程序中找不到它),它像我预期的那样进入下载文件夹,但我不知道从那里该怎么做。我打开了几次,但它只是在文本编辑器中打开。

我注意到 Python 3 已经安装在某个地方,尽管我似乎找不到实际位置。无论如何,我可以在终端中打开 Python shell,但我不确定已经安装 Python 是否会干扰任何事情。

我还没有对文件系统进行太多改动,我只是下载了 gnome 调整并做了一些个性化设置。

答案1

Python 3.7

64 位

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

bash Miniconda3-latest-Linux-x86_64.sh

32 位

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86.sh

bash Miniconda3-latest-Linux-x86.sh

关闭终端并再次打开:

conda list
conda init fish

对于更新:

conda update conda

答案2

您可以使用下面给出的链接安装该软件:

  1. https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html

相关内容