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