File: install_requirements

package info (click to toggle)
finalcif 113%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 42,568 kB
  • sloc: python: 44,669; sh: 79; makefile: 24
file content (9 lines) | stat: -rwxr-xr-x 216 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/bash

# Installs the required packages to run the Linux/MacOS application

python3.10 -m venv venv
source venv/bin/activate
venv/bin/python3.10 -m pip install pip -U

venv/bin/pip3 install -r requirements.txt