You want to work with venv, so in the project folder create your venv folder and activate the python environment (so all dependencies you install )
python3 -m venv env
source env/bin/activate
Install dependencies: robobrowser, xlrd and pandas
pip install robobrowser
pip install pandas
pip install pycookiecheat
If you have a werkzeug Error Read this As of February 2020 werkzug
upgraded to 1.0.0 and RoboBrowser lazy developers havent fixed. To fix this you need to go to your Robobrowser folder on your computer something like (/Users/yourusername/opt/anaconda3/lib/python3.7/site-packages/robobrowser/ or vi env/lib/python3.10/site-packages/robobrowser/browser.py) and open browser.py
and add change from werkzeug import cached_property
to from werkzeug.utils import cached_property
Please take a look at this url for more info: Link to issue
'''
vi env/lib/python3.8/site-packages/robobrowser/browser.py
'''