sudo apt update sudo apt install snapd sudo snap install pycharm-community --classic python3 -V download https://googlechromelabs.github.io/chrome-for-testing/ OR https://sites.google.com/chromium.org/driver/home?authuser=0 check installed Chrome version with ChroneWebdriver download properly version // Move file to a directory that's already in PATH sudo mv ~/Downloads/chromedriver /usr/local/bin // Make file executable sudo chmod +x /usr/local/bin/chromedriver INSTALLING SELENIUM ON YOUR PROJECT To install Selenium on your python project, follow these steps: Open File > Settings > Project from the PyCharm toolbar Select the project you want to install Selenium on Click the tab "Python Interpreter" within the project tab Click the + symbol to add a new library to the project Type "Selenium" into the new library search box, select the "Selenium" library and confirm by clicking "install package" When the installation has finished, cl...