前提・実現したいこと
herokuを使って、簡単なWebアプリケーションをデプロイすること
発生している問題・エラーメッセージ
remote: ERROR: Could not find a version that satisfies the requirement anaconda-client==1.7.2 (from -r /tmp/build_d7e864ec/requir ements.txt (line 2)) (from versions: 1.1.1, 1.2.2) remote: ERROR: No matching distribution found for anaconda-client==1.7.2 (from -r /tmp/build_d7e864ec/requirements.txt (line 2)) remote: ! Push rejected, failed to compile Python app. remote: ! Push rejected, failed to compile Py thon app. remote: remote: ! Push failed remote: remote: ! Push rejected to to-do-list-nameless. remote: To https://git.heroku.com/to-do-list-nameless.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'アプリケーション名'
HerokuでWebアプリケーションをデプロイする際に、「git push heroku master」と入力したら以上のエラーが発生しました。
エラーの内容は1行目、3行目の「ERROR」と表示されている部分に記載されていることはわかりました。書いてある内容を理解することはできます。
しかし、
✅anaconda-clientをのバージョン確認と現在のバージョンを満たす方法
✅anaconda-clientに一致するディストリビューションを見つける方法
この2つの方法がわかりません。
お時間ある方はフィードバックをよろしくお願いいたします。
該当のソースコード
$ git add . $ git commit -am "make it better" $ git push heroku master
補足情報(FW/ツールのバージョンなど)
【環境設定】
Atom 1.12
Python 3.95
Flask 1.2.1
SQLite 3.7.0
あなたの回答
tips
プレビュー