File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -8,25 +8,26 @@ echo "Installing as ${user}"
88# Python dependencies
99sudo add-apt-repository ppa:deadsnakes/ppa
1010sudo 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
1314cd ~
1415
1516git clone https://github.com/strykeforce/wallEYE.git -b Refactoring --single-branch
1617
1718cd wallEYE/PiSideCode
1819
19- python3.12 -m venv env
20+ python3.13 -m venv env
2021
2122source env/bin/activate
2223
2324wget https://bootstrap.pypa.io/get-pip.py
24- python3.12 get-pip.py
25+ python3.13 get-pip.py
2526
2627rm 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
3132deactivate
3233
@@ -63,7 +64,7 @@ WorkingDirectory=/home/${user}/wallEYE/PiSideCode
6364User=${user}
6465ExecStartPre=+/sbin/rmmod uvcvideo
6566ExecStartPre=+/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]
6970WantedBy=default.target\" > /etc/systemd/system/walleye.service"
You can’t perform that action at this time.
0 commit comments