13 lines
251 B
Bash
Executable file
13 lines
251 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sleep 5
|
|
|
|
pip3 install -U Flask
|
|
pip3 install Flask-RESTful
|
|
pip3 install opencv-python
|
|
pip3 install opencv-contrib-python
|
|
pip3 install opencv-python-headless
|
|
pip3 install opencv-contrib-python-headless
|
|
|
|
flask run --host=0.0.0.0 --port=50002
|
|
|