So I'm trying to deploy on heroku my app that uses node.js and python. it works on my computer but when i try to run it on heroku i get an error:
from selenium import webdriver
ImportError: no module named selenium
I have added Chrome, chromedriver, and selenium as buildpacks and in my Procfile i even have:
worker: pip install selenium
worker: python scraper.py
I am current just trying to get my python to work as i have already confirmed my javascript works.