Title says it all.
Both are PC, both Windows 10, both latest Python (I uninstalled and reinstalled both) and Selenium.
So what am I missing here ? I open a CMD on both PCs and type the same thing :
myscript.py "myurlargument"
It's the very same script that I execute from my Dropbox on one PC on which it works fine, and on the other on which it fails with this error.
The first line of the script :
from selenium import webdriver
import sys
driver = webdriver.Chrome(executable_path="chromedriver")
driver.get(sys.argv[1])
Thanks for your help.