I am creating a standalone python executable. The goal is for users to be able to use the program without having a python environment set up on their computers. However, there are some packages that are not wrapped within the executable and I need to install them separately:
pip install nodejs
pip install geckodriver-autoinstaller
I found an answer that describes how to do this by calling pip from within the python code but I was wondering how to install pip from within python code so I can use the method described here or if there is a more efficient way to do this.