📜  如何在 Windows 上安装 Seaborn?

📅  最后修改于: 2022-05-13 01:54:45.361000             🧑  作者: Mango

如何在 Windows 上安装 Seaborn?

在本文中,我们将研究在 Windows 上安装Python Seaborn 的过程。

先决条件:

  • Python
  • PIP 或 conda(取决于用户偏好)

对于 PIP 用户:

PIP 用户可以打开命令提示符并运行以下命令在 Windows 上安装Python Seaborn 包:

pip install Seaborn

安装完成后将显示以下消息:

使用 PIP 安装 seaborn

要验证安装,请在您的Python IDE 中使用以下代码:



Python3
import seaborn as sns
sns.__version__


Python3
import seaborn as sns
sns.__version__


输出:

验证seaborn的安装

对于 Conda 用户:

Conda 用户可以打开 Anaconda Power Shell Prompt 并使用以下命令在 Windows 上安装Python Seaborn 包:

conda install -c anaconda seaborn

安装完成后将显示以下消息:

使用 conda 安装 seaborn

要验证安装,请在您的Python IDE 中使用以下代码:

蟒蛇3

import seaborn as sns
sns.__version__

输出:

验证seaborn安装