https://youtu.be/tZM_DKUAZ68?rel=0

Steps to install dependency using Pipenv

  1. Create a project from any Python template.
  2. Open terminal and type pipenv install <package_name>, replace <package_name> with a name of Python dependency that you want to install.
  3. For example, let’s install the requests Python module with the following command:
pipenv install requests
  1. Update your code to use new dependency:
from requests import get

ip = get('<https://api.ipify.org>').text

print('My public IP address is: {}'.format(ip))
  1. Tap the Run button and check out the result!