如何在 Windows 上安装 Seaborn?

原文:https://www . geesforgeks . org/如何在 windows 上安装 seaborn/

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

先决条件:

对于画中画用户:

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

pip install Seaborn

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

installing seaborn using PIP

要验证安装,请在 python ide 中使用以下代码:

Python 3

import seaborn as sns
sns.__version__

输出:

verifying installation of seaborn

对于康达用户:

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

conda install -c anaconda seaborn

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

installing seaborn using conda

要验证安装,请在 python ide 中使用以下代码:

Python 3

import seaborn as sns
sns.__version__

输出:

verifying the seaborn installation