Conda 安裝 Seaborn

Manav Narula 2023年1月30日 2021年7月16日
  1. 使用 pip 命令安裝 Seaborn 模組
  2. 使用 conda 命令安裝 Seaborn 模組
  3. 使用 Anaconda Navigator 安裝 Seaborn 模組
Conda 安裝 Seaborn

Anaconda 是 Python 應用程式的包和環境管理器。它是開源的,被全球數百萬使用者廣泛使用。

本教程將介紹如何為 Anaconda 使用者在你的裝置上安裝 seaborn 模組。

使用 pip 命令安裝 Seaborn 模組

我們可以很容易地使用 pip 命令從命令終端安裝這個包。此命令用作 Python 中的包安裝程式。我們可以通過執行以下命令來安裝 seaborn 包。

pip install seaborn

它也適用於使用 Anaconda 應用程式的使用者。

使用 conda 命令安裝 Seaborn 模組

使用 Anaconda 的使用者可以使用 conda 命令來安裝 seaborn 模組。我們可以在命令終端中執行以下命令。

conda install seaborn

有時,最新版本的模組可能在 conda 的預設頻道中不可用。對於這種情況,我們可以使用 conda-forgeconda-forge 是社群範圍內的一項努力,旨在提供預設渠道中缺少的軟體包或更新的模組。

我們可以很容易地使用它來安裝最新版本的 seaborn 模組。

conda install -c conda-forge seaborn 

請注意,這可能會刪除一些額外的程式,因此將其用作最後的手段。

使用 Anaconda Navigator 安裝 Seaborn 模組

或者,如果需要,我們可以使用 Anaconda Navigator GUI 來安裝此軟體包。開啟應用程式後,可以導航到環境,選擇基礎或安裝所需的環境。從那裡,選擇包的未安裝選項。它返回未安裝在所選環境中的軟體包列表。如果沒有安裝 seaborn,你會在這個列表中找到它並且可以安裝它。

Author: Manav Narula
Manav Narula avatar Manav Narula avatar

Manav is a IT Professional who has a lot of experience as a core developer in many live projects. He is an avid learner who enjoys learning new things and sharing his findings whenever possible.

LinkedIn

相關文章 - Seaborn Install