Pipenv is a Python virtualenv management tool that supports a multitude of systems and nicely bridges the gaps between pip, python (using system python, pyenv or asdf) and virtualenv.
pipenv install <package_name>
, replace <package_name>
with a name of Python dependency that you want to install.pipenv install requests
from requests import get
ip = get('https://api.ipify.org').text
print('My public IP address is: {}'.format(ip))