How do I solve selenium issues on mac when trying to run a script

Viewed 512

I´m working on bulk uploading an nft collection:

  1. Download Python and Chrome browser
  2. pip install -r requirements.txt
  3. python openseaupload.py (Run the script)
  4. Press the "Open Chrome Browser" button
  5. Set up your metamask wallet and login to Opensea using your wallet
  6. Open the collection you want to upload to and copy the link
  7. Click Start button

Credits @cloudmaking


The problem is on step 3 when I try to run the script. I get this error:


File "openseaupload.py", line 9, in from selenium import webdriver ImportError: No module named selenium


I know selenium is intalled as I checked and it says " "Requirement already satisfied)

I´m lost here.

2 Answers

Possibly you have multiple versions of Python installed. So instead of using pip as in:

pip install -r requirements.txt

try with pip3 as:

pip3 install -r requirements.txt

I try paste (python openseaupload.py) but It was wrong, Than you shoul try (python3 openseaupload.py) it works

Related