Aditya Mandal
Aditya Mandal

Reputation: 188

How to install Selenium on Anaconda and How to use selenium with Scrapy on Spyder IDE of Anaconda?

I have searched a lot on google but couldn't find any helpful post and wondering like how to install selenium on Anaconda and then afterward How to use selenium along with Scrapy on Spyder IDE of anaconda.

Upvotes: 4

Views: 6772

Answers (1)

FlyingTeller
FlyingTeller

Reputation: 20516

That's an awefully broad question. Since it is not possible to write a whole tutorial here, I can give you the first steps:

Installing selenium can be done by conda install -c conda-forge selenium

After that you can use it in any python script. It doesn't matter which IDE you use or if you use an interactive session. Make sure though that Spider is set to use the same python version that you installed selenium for.

For the basic usage of Selenium and Scrapy, you should follow the basic tutorials here and here. If you have more specific questions, you should open a new question that shows your attempt at a script, what you expect it to do, the error/output you are getting instead etc.

Upvotes: 2

Related Questions