python install 3 code example
Example 1: install python 3.6
conda create -n myenv python=3.6 #to launch in Anaconda
Example 2: pip install python 3
python -m pip install <package>
#Download Selenium
python -m pip install selenium
conda create -n myenv python=3.6 #to launch in Anaconda
python -m pip install <package>
#Download Selenium
python -m pip install selenium