How to Install Pandas-Profiling on MacOS?
Last Updated :
26 Nov, 2021
In this article, we will learn how to install Pandas-Profiling in Python on macOS.
Pandas profiling is an open-source Python module with which we can quickly do an exploratory data analysis with just a few lines of code. Besides, if this is not enough to convince us to use this tool, it also generates interactive reports in a web format that can be presented to any person, even if they don’t know to program.
In short, what pandas profiling does is save us all the work of visualizing and understanding the distribution of each variable. It generates a report with all the information easily available.
Installing Pandas-Profiling on MacOS:
Method 1: Using pip to install Pandas-Profiling Package
Follow the below steps to install the Pandas-Profiling package on macOS using pip:
Step 1: Install the latest Python3 in MacOS
Step 2: Check if pip3 and python3 are correctly installed.
python3 --version
pip3 --version
Step 3: Upgrade your pip to avoid errors during installation.
pip3 install --upgrade pip
Step 4: Enter the following command to install Pandas-Profiling using pip3.
pip3 install Pandas-Profiling

Method 2: Using setup.py to install Pandas-Profiling
Follow the below steps to install the Pandas-Profiling package on macOS using the setup.py file:
Step 1: Download the latest source package of Pandas-Profiling for python3 from here.
curl https://files.pythonhosted.org/packages/03/60/a0031ba821b75e71b81bd8d43a3e03bc233697baca58790b506592900a97/pandas-profiling-3.1.0.tar.gz > pandas-profiling.tar.gz
Step 2: Extract the downloaded package using the following command.
tar -xzvf pandas-profiling.tar.gz
Step 3: Go inside the folder and Enter the following command to install the package.
Note: You must have developer tools for XCode MacOS installed in your system
cd pandas-profiling-3.1.0
python3 setup.py install

Verifying Pandas-Profiling installation on macOS:
Make the following import in your python terminal to verify if the installation has been done properly:
import pandas_profiling
If there is any error while importing the module then is not installed properly.
Similar Reads
How to Install Pandas-Profiling on Linux? In this article, we will learn how to install Pandas-Profiling in Python on Linux. Pandas profiling is an open-source Python module with which we can quickly do an exploratory data analysis with just a few lines of code. Besides, if this is not enough to convince us to use this tool, it also generat
2 min read
How to Install Python Pandas on macOS? In this article, we will learn how to install Pandas in Python on macOS using Terminal. Pandas is a software library written for the Python programming language for data manipulation and analysis. In particular, it offers data structures and operations for manipulating numerical tables and time seri
3 min read
How to Install Pandas-Profiling on Windows? In this article, we will look into ways of installing the Pandas Profiling package in Python. Prerequisites:PythonPIP or Conda (Depending upon preference)For PIP Users: Pip users can just open up the command prompt and use the below command to install the Pandas profiling package in python: pip inst
1 min read
How to Install PIL on MacOS? PIL is an acronym for the python image library. It is a library that is used to manipulate images, using PIL library with python we can perform various operations on images. In this article, we are going to learn how we can install PIL on MacOS. Method 1: Using PIP to install PIL (Pillow). Python co
1 min read
How to Install PyBrain on MacOS? PyBrain is an open-source and free-to-use Python-based Machine Learning Library. Its main purpose is to provide machine learning tasks with flexible, easy-to-use, still a very powerful algorithms. It also provides a wide range of predefined environments which is used to test and compare different ty
2 min read
How to Install Packages in Python on MacOS? To get started with using pip, you should install Python on your system. Make sure that you have a working pip. Installing Packages in Python on MacOS: Follow the below steps to install python packages on MacOS: Step 1: As the first step, you should check that you have a working Python with pip inst
2 min read
How to Install Rasterio on MacOS? In this article, we will learn how to install Rasterio in Python on MacOS. Rasterio is used to access geospatial raster data. Geographic information systems use GeoTIFF and other formats to organize and store gridded raster datasets such as satellite imagery and terrain models. Rasterio reads and wr
2 min read
How to Install Pillow on MacOS? In this article, we will learn how to install Pillow in Python on MacOS. Python Imaging Library (expansion of PIL) is the de facto image processing package for Python language. Installation:Method 1: Using pip to install Pillow Follow the below steps to install the Pillow package on macOS using pip:
2 min read
How to Install Theano on MacOS? Theano is a Python library that allows us to evaluate mathematical operations including multi-dimensional arrays so efficiently. It is mostly used in building Deep Learning Projects. It works way faster on Graphics Processing Unit (GPU) rather than on the CPU. In this article, we will look into the
1 min read
How to Install Seaborn on MacOS? In this article, we will learn how to install seaborn in Python on MacOS. Seaborn is a library for making statistical graphics in Python. It is built on top of matplotlib and is closely integrated with pandas data structures. Installation:Method 1: Using pip to install Seaborn Package Follow the bel
2 min read