File: setvenv.sh

package info (click to toggle)
python-wallbox 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 116 kB
  • sloc: python: 277; sh: 5; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 155 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/bash

# Add python venv and activate
python3 -m venv ./venv
source ./venv/bin/activate

# Install required packages
pip3 install -r requirements.txt