Skip to content

Commit 35748de

Browse files
committed
version 3.13
1 parent 04a9740 commit 35748de

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

install.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,26 @@ echo "Installing as ${user}"
88
# Python dependencies
99
sudo add-apt-repository ppa:deadsnakes/ppa
1010
sudo apt-get update
11-
sudo apt-get install python3.12 python3.12-venv python3.12-dev
11+
sudo apt-get upgrade
12+
sudo apt-get install python3.13 python3.13-venv python3.13-dev
1213

1314
cd ~
1415

1516
git clone https://github.com/strykeforce/wallEYE.git -b Refactoring --single-branch
1617

1718
cd wallEYE/PiSideCode
1819

19-
python3.12 -m venv env
20+
python3.13 -m venv env
2021

2122
source env/bin/activate
2223

2324
wget https://bootstrap.pypa.io/get-pip.py
24-
python3.12 get-pip.py
25+
python3.13 get-pip.py
2526

2627
rm get-pip.py
2728

28-
python3.12 -m pip install --upgrade setuptools
29-
python3.12 -m pip install -r requirements.txt
29+
python3.13 -m pip install --upgrade setuptools
30+
python3.13 -m pip install -r requirements.txt
3031

3132
deactivate
3233

@@ -63,7 +64,7 @@ WorkingDirectory=/home/${user}/wallEYE/PiSideCode
6364
User=${user}
6465
ExecStartPre=+/sbin/rmmod uvcvideo
6566
ExecStartPre=+/sbin/modprobe uvcvideo nodrop=1 timeout=5000 quirks=0x80
66-
ExecStart=+/home/${user}/wallEYE/PiSideCode/env/bin/python3.12 /home/${user}/wallEYE/PiSideCode/init.py
67+
ExecStart=+/home/${user}/wallEYE/PiSideCode/env/bin/python3.13 /home/${user}/wallEYE/PiSideCode/init.py
6768
6869
[Install]
6970
WantedBy=default.target\" > /etc/systemd/system/walleye.service"

0 commit comments

Comments
 (0)