Reputation: 47
I am trying to installing selenium with anaconda but failed.I also tried the command " conda install selenium " but it is not working
Upvotes: 0
Views: 2441
Reputation: 1585
In order to conda install packages the package must be hosted on anaconda.org. There is no package called simply "selenium" in the default anaconda channel. There is a package in the conda-forge channel however and it can be installed using:
conda install -c conda-forge selenium
Read more about it here: https://anaconda.org/conda-forge/selenium
Upvotes: 2