#Execution content
$python filename.py
#error
ImportError: No module named selenium
Even though selenium is already installed, it says no module.
$python3 filename.py
Since the installed python is 3 series, use the ** python3 ** command. In the first place, ** selenium is also installed ** with pip3.
$ pip install selenium
-bash: pip: command not found
Recommended Posts