Changes to install files for Ubuntu and added *.png to .gitignore

This commit is contained in:
Lucas 2024-03-08 20:31:22 -06:00
parent 5a11acfa42
commit a6d557d1c6
3 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ output.log
output.mp4
output.log
cables-sample.zip
*.png

View File

@ -1,4 +1,5 @@
#!/bin/sh
# change this to #!/bin/bash for windows
if ! [ -d "venv" ]; then
./venv-setup.sh

View File

@ -1,6 +1,7 @@
#!/bin/sh
# change this to #!/bin/bash for windows
python -m venv ./venv
python3 -m venv ./venv
source ./venv/bin/activate
pip install --upgrade pip