##やろうとしていること
- pythonプログラム(LINE Bot)をHerokuにDeployしたい。
- pythonプログラムは、LINEからのメッセージに応じてLEDを点灯させる。
- pythonプログラムの構成は、
main.py
|---LED_ON.py
|---LED_OFF.py
main.pyから**"subprocess"**して、LED ON/OFFを制御しています。
##今の状況
ngrokを利用して、アプリケーションの動作確認まで完了しました。
恒久的に動作させたいので、herokuにdeployさせる段階で、gitにpushできないエラーが発生しました。
##エラーメッセージ
$ git push heroku masterを実行したところ、次のエラーが発生し、rejectされてしまいました。
pushできない原因がわからず困っております。
text
1Enumerating objects: 11, done. 2Counting objects: 100% (11/11), done. 3Delta compression using up to 4 threads 4Compressing objects: 100% (9/9), done. 5Writing objects: 100% (11/11), 4.06 KiB | 462.00 KiB/s, done. 6Total 11 (delta 4), reused 0 (delta 0) 7remote: Compressing source files... done. 8remote: Building source: 9remote: 10remote: -----> Python app detected 11remote: ! Python 2 has reached it's community EOL. Upgrade your Python runtime to maintain a secure application as soon as possible. 12remote: Learn More: https://devcenter.heroku.com/articles/python-2-7-eol-faq 13remote: ! Only the latest version of Python 2 is supported on the platform. Please consider upgrading to python-2.7.17 14remote: Learn More: https://devcenter.heroku.com/articles/python-runtimes 15remote: -----> Installing python-2.7.16 16remote: -----> Installing pip 17remote: -----> Installing SQLite3 18remote: Sqlite3 successfully installed. 19remote: -----> Installing requirements with pip 20remote: Collecting arandr==0.1.9 (from -r /tmp/build_824c5a2689b0409e0b470414803678c3/requirements.txt (line 1)) 21remote: Could not find a version that satisfies the requirement arandr==0.1.9 (from -r /tmp/build_824c5a2689b0409e0b470414803678c3/requirements.txt (line 1)) (from versions: ) 22remote: No matching distribution found for arandr==0.1.9 (from -r /tmp/build_824c5a2689b0409e0b470414803678c3/requirements.txt (line 1)) 23remote: ! Push rejected, failed to compile Python app. 24remote: 25remote: ! Push failed 26remote: Verifying deploy... 27remote: 28remote: ! Push rejected to hogehoge. 29remote: 30To https://git.heroku.com/hogehoge.git 31 ! [remote rejected] master -> master (pre-receive hook declined) 32error: failed to push some refs to 'https://git.heroku.com/hogehoge.git'
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。