How to Install "Our Shopping List" on Linux Mint
Open your web browser and go to https://github.com/nanawel/our-shopping-list.
Click the green "Code" button and select "Download ZIP."
Once the ZIP file is downloaded, open your terminal by pressing Ctrl+Alt+T.
Navigate to the directory where the downloaded ZIP file is located. For example, if it is in your Downloads folder, type the following command and press Enter:
cd ~/DownloadsExtract the contents of the ZIP file by typing the following command and pressing Enter:
unzip our-shopping-list-master.zipNavigate into the extracted directory by typing the following command and pressing Enter:
cd our-shopping-list-masterVerify that Python and pip are installed on your system by typing the following commands and pressing Enter:
python3 --versionpip3 --versionIf either command returns an error, you will need to install Python or pip using your system's package manager.
Install the required dependencies by typing the following command and pressing Enter:
pip3 install -r requirements.txtStart the application by typing the following command and pressing Enter:
python3 app.pyOpen your web browser and navigate to http://localhost:5000/ to access the application.
Congratulations! You have successfully installed "Our Shopping List" on Linux Mint.