11 lines
152 B
Bash
Executable file
11 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sleep 5
|
|
|
|
pip3 install -U Flask
|
|
pip3 install Flask-RESTful
|
|
pip3 install pysqlite3
|
|
pip3 install pandas
|
|
|
|
flask run --host=0.0.0.0 --port=50011
|
|
|