現在行おうとしていること
anaconda環境でflaskで開発した「LineBotApi」をサーバーをherokuにデプロイしようとしている中でエラーコードが発生しました
今回参考にしたサイトはこのサイトです
発生している問題・エラーメッセージ
AnacondaPrompt
1git push heroku master 2Enumerating objects: 23, done. 3Counting objects: 100% (23/23), done. 4Delta compression using up to 4 threads 5Compressing objects: 100% (17/17), done. 6Writing objects: 100% (23/23), 4.55 KiB | 122.00 KiB/s, done. 7Total 23 (delta 6), reused 0 (delta 0) 8remote: Compressing source files... done. 9remote: Building source: 10remote: 11remote: -----> App not compatible with buildpack: https://buildpack-registry.s3.amazonaws.com/buildpacks/heroku/python.tgz 12remote: More info: https://devcenter.heroku.com/articles/buildpacks#detection-failure 13remote: 14remote: ! Push failed 15remote: Verifying deploy... 16remote: 17remote: ! Push rejected to <アプリ名>. 18remote: 19To https://git.heroku.com/<アプリ名>.git 20 ! [remote rejected] master -> master (pre-receive hook declined) 21error: failed to push some refs to 'https://git.heroku.com/<アプリ名>.git'
該当のソースコード
ソースコードは参考サイトと同様です
###runtime.txt
AnacondaPromptでpython --versionと入力し確認しました。
python-3.7.4
###requirements.txt
Anaconda Prompt上で
pip freeze>requirements.txt
と入力しました
###Procfile
web: python <プログラム名>.py
試したこと
1.エラーコードで検索し同様のサイトを参考にしたのですが、requirements.txtには外部ライブラリはpip freezeによって記載してあることを確認しました
2.綴りミス等の確認もしました。以下の通り
dir C:\Users\○○\○○\Line_bot のディレクトリ 2020/05/08 18:51 <DIR> . 2020/05/08 18:51 <DIR> .. 2020/05/08 15:48 1,392 line_bot.py 2020/05/08 16:00 25 Procfile 2020/05/08 16:12 4,008 requirements.txt 2020/05/08 16:09 12 runtime.txt 4 個のファイル 5,437 バイト 2 個のディレクトリ 29,977,575,424 バイトの空き領域
プログラミング初学者の為回答に不足している情報等ありましたらお知らせください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/02 16:39