File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 125125
126126### Prerequisites:
127127
128- - TensorFlow 2.14.0
129- - Numpy 1.26.2
130- - Matplotlib 3.8.2
131- - Pillow 10.1.0
132- - OpenCV-Python 4.8.1.78
133- - Flask==2.1.1
128+ Package Version
129+ ------------------ -----------
130+ absl-py 2.4.0
131+ astunparse 1.6.3
132+ certifi 2026.2.25
133+ charset-normalizer 3.4.7
134+ click 8.3.1
135+ contourpy 1.3.3
136+ cycler 0.12.1
137+ Flask 2.1.1
138+ flatbuffers 25.12.19
139+ fonttools 4.62.1
140+ gast 0.7.0
141+ google-pasta 0.2.0
142+ grpcio 1.80.0
143+ h5py 3.14.0
144+ idna 3.11
145+ itsdangerous 2.2.0
146+ Jinja2 3.1.6
147+ keras 3.14.0
148+ kiwisolver 1.5.0
149+ libclang 18.1.1
150+ markdown-it-py 4.0.0
151+ MarkupSafe 3.0.3
152+ matplotlib 3.8.2
153+ mdurl 0.1.2
154+ ml_dtypes 0.5.4
155+ namex 0.1.0
156+ numpy 1.26.2
157+ opencv-python 4.8.1.78
158+ opt_einsum 3.4.0
159+ optree 0.19.0
160+ packaging 26.0
161+ Pillow 10.1.0
162+ pip 26.0.1
163+ protobuf 7.34.1
164+ Pygments 2.20.0
165+ pyparsing 3.3.2
166+ python-dateutil 2.9.0.post0
167+ requests 2.33.1
168+ rich 14.3.3
169+ setuptools 82.0.1
170+ six 1.17.0
171+ tensorflow 2.21.0
172+ termcolor 3.3.0
173+ typing_extensions 4.15.0
174+ urllib3 2.6.3
175+ Werkzeug 3.1.8
176+ wheel 0.46.3
177+ wrapt 2.1.2
178+
134179
135180### Compiler:
136181
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ echo " 📦 Generating requirements.txt from current environment..."
4+
5+ # Activate venv if it exists
6+ if [ -d " venv" ]; then
7+ echo " 🔧 Activating virtual environment..."
8+ source venv/bin/activate
9+ fi
10+
11+ # Generate requirements.txt
12+ pip freeze > requirements.txt
13+
14+ echo " ✅ requirements.txt created successfully!"
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ echo " 🔧 Setting execute permissions..."
4+
5+ chmod +x install_requirements
6+ chmod +x freeze_requirements
7+ chmod +x setup
8+ chmod +x run_server
9+
10+ echo " ✅ Permissions set!"
11+
Original file line number Diff line number Diff line change 1- tensorflow == 2.14.0
2- numpy == 1.26.2
3- matplotlib == 3.8.2
4- Pillow == 10.1.0
5- opencv-python == 4.8.1.78
6- Flask == 2.1.1
1+ absl-py == 2.4.0
2+ astunparse == 1.6.3
3+ certifi == 2026.2.25
4+ charset-normalizer == 3.4.7
5+ click == 8.3.1
6+ contourpy == 1.3.3
7+ cycler == 0.12.1
8+ Flask == 2.1.1
9+ flatbuffers == 25.12.19
10+ fonttools == 4.62.1
11+ gast == 0.7.0
12+ google-pasta == 0.2.0
13+ grpcio == 1.80.0
14+ h5py == 3.14.0
15+ idna == 3.11
16+ itsdangerous == 2.2.0
17+ Jinja2 == 3.1.6
18+ keras == 3.14.0
19+ kiwisolver == 1.5.0
20+ libclang == 18.1.1
21+ markdown-it-py == 4.0.0
22+ MarkupSafe == 3.0.3
23+ matplotlib == 3.8.2
24+ mdurl == 0.1.2
25+ ml_dtypes == 0.5.4
26+ namex == 0.1.0
27+ numpy == 1.26.2
28+ opencv-python == 4.8.1.78
29+ opt_einsum == 3.4.0
30+ optree == 0.19.0
31+ packaging == 26.0
32+ Pillow == 10.1.0
33+ protobuf == 7.34.1
34+ Pygments == 2.20.0
35+ pyparsing == 3.3.2
36+ python-dateutil == 2.9.0.post0
37+ requests == 2.33.1
38+ rich == 14.3.3
39+ setuptools == 82.0.1
40+ six == 1.17.0
41+ tensorflow == 2.21.0
42+ termcolor == 3.3.0
43+ typing_extensions == 4.15.0
44+ urllib3 == 2.6.3
45+ Werkzeug == 3.1.8
46+ wheel == 0.46.3
47+ wrapt == 2.1.2
You can’t perform that action at this time.
0 commit comments