「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

外部連結