Pip install hail not working

Hello!

I am trying to install hail using pip and it is not working. I do not understand what this error message means.

# pip install hail
Collecting hail
  Could not find a version that satisfies the requirement hail (from versions: )
No matching distribution found for hail
#

Hi! Sorry you’re running into this issue. This means the pip you’re using is a Python 2 pip. Try using

pip3 install hail

or

python3 -m pip install hail

If you have Python 3 installed, one of those commands should work. If neither of those commands work, you should verify you installed Python 3 correctly. If you are using Anaconda or Miniconda, you might find the Ananconda getting started page helpful.