Make install does not install all required packages to run the program. New users are not informed that they need to create a virtual environment, install flask, install poetry, and install dedupe. The following are the exact commands I wrote to successfully run make start without an error message, you need to run the following steps:
- Create a virtual environment and activate the environment
- $
python3 -m venv .venv
. .venv/bin/activate
- Install Flask:
pip3 install flask
- (mac)
brew install poetry
- Install dedupe:
pip3 install dedupe
Note these are the commands that worked on my M1 computer.
Make install does not install all required packages to run the program. New users are not informed that they need to create a virtual environment, install flask, install poetry, and install dedupe. The following are the exact commands I wrote to successfully run
make startwithout an error message, you need to run the following steps:python3 -m venv .venv. .venv/bin/activatepip3 install flaskbrew install poetrypip3 install dedupeNote these are the commands that worked on my M1 computer.