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