INSTALLING PANDAS
Having trouble installing Pandas? And don’t know where to start? This tutorial will help you install pandas throughout different platforms like Windows, Linux (Mac OS & Ubuntu).
Installing Pandas on Windows
You can install pandas on windows by simply going to command prompt and type:
pip install pandas
You can use pip3 install pandas
too, if ‘pip
’ isn’t recognized by the prompt.
Make sure you have python installed on your system and if that’s not the case click here to install python first. (This goes for both Windows and Linux systems)
Note: If pip isn’t installed on your system, then make sure to install pip first on command prompt. Follow the following steps to install pip on your machine.
- Download get-pip.py to a folder on your computer. (Make sure, it’s the same folder where you have installed python.
- Open command prompt and type:
python get-pip.py
Pip is successfully installed on your windows machine now.
Installing Pandas on Mac OS
You can install pandas on MacOSby simply going to terminal in the applications section:
pip install pandas
You can use pip3 install pandas
too, if ‘pip
’ isn’t recognized by the prompt.
Pip is successfully installed on your windows machine now.
Installing Pandas on Ubuntu
In order to install pandas on ubuntu, make sure you have pip installed on your machine. To install pip on ubuntu, please enter the following command on your terminal:
sudo apt-get install python-pip
After installing pip on ubuntu, now you can install pandas using pip by entering the following command:
sudo pip install pandas
Pip is successfully installed on your ubuntu machine now.