How to install the pandas library ? code example
Example 1: panda python install
py -m pip install pandas
setx PATH "%PATH%;C:\<path\to\python\directory\>\Scripts"
pip install pandas
py -m pip install --trusted-host pypi.python.org pip pandas
py -m pip install --user pandas
py -m venv c:\path\to\new\environment
c:\path\to\new\environment\Scripts\activate.bat
Example 2: install pandas
sudo pip3 install pandas
Example 3: python install pandas
C:\> py -m pip install pandas %= one of Python on the system =%
C:\> py -2 -m pip install pandas %= one of Python 2 on the system =%
C:\> py -2.7 -m pip install pandas %= only for Python 2.7 =%
C:\> py -3 -m pip install pandas %= one of Python 3 on the system =%
C:\> py -3.6 -m pip install pandas %= only for Python 3.6 =%