Seaborn environment setup

Seaborn Environment Setup

In this chapter, we’ll discuss setting up the Seaborn environment. Let’s start with installation and learn how to get started as we go.

Installing Seaborn and Getting Started

In this section, we’ll walk through the steps for installing Seaborn.

Using the Pip Installer

To install the latest version of Seaborn, you can use pip —

pip install seaborn

Using Anaconda for Windows, Linux, and Mac

Anaconda (from https://www.anaconda.com/ ) is a free Python distribution for the SciPy stack. It is also available for Linux and Mac.

You can also use conda to install released versions.

conda install seaborn

Install the development version of Seaborn directly from GitHub

https://github.com/mwaskom/seaborn ”

Dependencies

Consider the following dependencies of Seaborn:

  • Python 2.7 or 3.4 or above
  • numpy
  • scipy
  • pandas
  • matplotlib

Leave a Reply

Your email address will not be published. Required fields are marked *