Skip to content

Commit

Permalink
Merge pull request #104 from MikeGawi/starlette
Browse files Browse the repository at this point in the history
Fix for ModuleNotFoundError: No module named 'starlette' #103
  • Loading branch information
MikeGawi authored Mar 29, 2024
2 parents 7c2586d + 0ebcd24 commit 1dd1091
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function install_pips {
declare -A pips=( ["Requests"]="requests>=2.26.0" ["Pillow"]="pillow==9.3.0" ["Telebot"]="pyTelegramBotAPI" ["Dateutil"]="python-dateutil" ["ConfigParser"]="configparser>=5.0.0"\
["Google components"]="google-api-python-client google-auth-httplib2 google-auth-oauthlib"\
["SPI Libs"]="spidev==3.5" ["Pandas"]="pandas==1.2.0 numpy==1.20" ["Flask"]="flask<2.2.0" ["Flask-WTF"]="flask-wtf==1.0.0" \
["Flask-Login"]="flask-login==0.5.0" ["WTForms"]="wtforms>=3.0.0" ["SMBus"]="smbus2")
["Starlette"]="starlette" ["Flask-Login"]="flask-login==0.5.0" ["WTForms"]="wtforms>=3.0.0" ["SMBus"]="smbus2")
declare -a order;
order+=( "Requests" )
order+=( "Telebot" )
Expand All @@ -57,6 +57,7 @@ function install_pips {
order+=( "SMBus" )
order+=( "SPI Libs" )
order+=( "Pandas" )
order+=( "Starlette" )
order+=( "Flask-WTF" )
order+=( "WTForms" )
order+=( "Flask-Login" )
Expand Down

0 comments on commit 1dd1091

Please sign in to comment.