Miniconda:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
(建立内容为“'''Miniconda'''是Conda的極小包。 == 外部連結 == * {{Official|https://docs.conda.io/en/latest/miniconda.html}} {{en}} Category:軟體”的新页面)
 
 
(未显示同一用户的1个中间版本)
第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>
其他的環境(像是arm64環境)可以參考官網上面對應的檔案。
== 移除 ==
針對[[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:56的最新版本

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

其他的环境(像是arm64环境)可以参考官网上面对应的档案。

移除

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

rm -rf ~/miniconda3

外部连结