# If you are using Python 2 (Windows)
pip install absl-py
# if you are using Python 3 (Windows)
pip3 install absl-py
# If the pip is not set as environment varibale PATH
python -m pip install absl-py
# If you are using Python 2 (Linux)
sudo pip install absl-py
# if you are using Python 3 (Linux)
sudo pip3 install absl-py
# In case if you have to easy_install
sudo easy_install -U absl-py
# On Centos
yum install absl-py
# On Ubuntu
sudo apt-get install absl-py
# If you are installing it in Anaconda
conda install -c conda-forge absl-py