I would like to install selenium v4.1.0 on Anaconda python on Windows.
https://anaconda.org/conda-forge/selenium
If you run conda install selenium
, conda will install selenium v3.11 if you're on Windows.
I ran conda install selenium --channel conda-forge/noarch
to make conda install selenium v4.1.0 which is the noarch version.
The problem is when I run conda update --all
, conda will downgrade my selenium back to v3.
After some googling, I discover modifying the config file .condarc may fix this problem. Question is how to modify .condarc to force conda to install the noarch selenium version when running "conda update --all"?
I am open to other solutions like pinning that will prevent conda from downgrading selenium back to v3 when I run conda update --all
I'm using python 3.9.12, conda 4.12.0