More or less I am trying to make a script that uses chromium. I want to make it universal so it can be installed on any computer and work from there. Currently, I have to use the full path of the file to open it:
subprocess.Popen('C:\\Users\\name\\Desktop\\script\\chrome.exe bing.com')
this works fine, but i want to make it so it looks in the directory that it is being run from so it would be:
subprocess.Popen('chrome.exe bing.com')
How can I make this happen?