Miniconda:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
(建立内容为“'''Miniconda'''是Conda的極小包。 == 外部連結 == * {{Official|https://docs.conda.io/en/latest/miniconda.html}} {{en}} Category:軟體”的新页面)
 
无编辑摘要
第1行: 第1行:
'''Miniconda'''是[[Conda]]的極小包。
'''Miniconda'''是[[Conda]]的極小包。
== 安裝 ==
在[[Linux]] x86-64環境下:
<syntaxhighlight lang="bash">
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh; chmod 755 Miniconda3-latest-Linux-x86_64.sh; ./Miniconda3-latest-Linux-x86_64.sh
</syntaxhighlight>
== 移除 ==
針對[[Bash]]環境,先移除<code>~/.bashrc</code>裡的內容(搜尋<code>conda</code>找到對應的段落),接著刪除實際的套件路徑:
<syntaxhighlight lang="bash">
rm -rf ~/miniconda3
</syntaxhighlight>


== 外部連結 ==
== 外部連結 ==
* {{Official|https://docs.conda.io/en/latest/miniconda.html}} {{en}}
* {{Official|https://docs.conda.io/en/latest/miniconda.html}} {{en}}


[[Category:軟體]]
[[Category:軟體]]

2022年9月4日 (日) 20:55的版本

MinicondaConda的极小包。

安装

Linux x86-64环境下:

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

移除

针对Bash环境,先移除~/.bashrc里的内容(搜寻conda找到对应的段落),接着删除实际的套件路径:

rm -rf ~/miniconda3

外部链接