Part 3: Installing With Python using PIP
The first bit to figure is which python interpreters are installed as this will be relevant later
On Ubuntu the command below achieved what was required however it may vary on other linux systems

running which certbot allows me to work out and which python interpreter is being used


a review of the available python pip installers also show me I should be using pip3 command
running pip3 install certbot-dns-cloudflare installs the package into the python environment
I can then confirm that the plugin is available via the command certbot plugins
To verify the functioning we call also install the google-dns installer using the same method
pip3 install certbot-dns-google
Confirmation:
Andrei




