-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
run.bat
143 lines (115 loc) · 3.86 KB
/
run.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@echo off
echo Installing ONNX Runtime (GPU)...
pip install onnxruntime-gpu
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing NumPy...
pip install numpy
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing comtypes...
pip install comtypes
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing OpenCV (opencv-python)...
pip install opencv-python
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing pandas...
pip install pandas
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing bettercam...
pip install bettercam
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing onnx...
pip install onnx
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing PyWin32...
pip install pywin32
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing Dill...
pip install dill
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing CuPy (GPU accelerated array library for CUDA 11.8)...
pip install cupy-cuda11x
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing psutil...
pip install psutil
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing colorama...
pip install colorama
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing ultralytics...
pip install ultralytics
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing PyAutoGUI...
pip install PyAutoGUI
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing PyGetWindow...
pip install PyGetWindow
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing pyyaml...
pip install pyyaml
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing tqdm...
pip install tqdm
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing matplotlib...
pip install matplotlib
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing seaborn...
pip install seaborn
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing requests...
pip install requests
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing ipython...
pip install ipython
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing dxcam...
pip install dxcam
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing pyarmor...
pip install pyarmor
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing serial...
pip install serial
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing onnx-simplifier...
pip install onnx-simplifier
echo Press enter to continue with the rest of the dependency installs
pause
echo Installing onnxruntime...
pip install onnxruntime
echo Press enter to continue with the rest of the dependency installs
pause
echo MAKE SURE TO HAVE THE WHL DOWNLOADED BEFORE YOU CONTINUE!!!
pause
echo Click the link to download the WHL: press ctrl then left click with mouse
echo https://github.com/cupy/cupy/releases/download/v13.3.0/cupy_cuda11x-13.3.0-cp311-cp311-win_amd64.whl
pause
echo Installing CuPy from WHL...
pip install https://github.com/cupy/cupy/releases/download/v13.3.0/cupy_cuda11x-13.3.0-cp311-cp311-win_amd64.whl
pause
echo All packages installed successfully!
pause