実現したいこと
Herokuへのデプロイ:pythonのバージョンが正しく認識されない。
発生している問題・エラーメッセージ
herokuに対応しているバージョンのpythonをインストールしたものの、以前のバージョンが認識されている。
equested runtime (Python 3.7.4) is not available for this stack (heroku-18).
原因
パスの設定?
エラーメッセージ
remote: -----> Creating chromedriver export scripts... remote: -----> Python app detected remote: ! Requested runtime (Python 3.7.4) is not available for this stack (heroku-18). remote: ! Aborting. More info: https://devcenter.heroku.com/articles/python-support remote: ! Push rejected, failed to compile Python app. remote: remote: ! Push failed remote: Verifying deploy... remote: remote: ! Push rejected to agile-tundra-98261. remote: To https://git.heroku.com/agile-tundra-98261.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://git.heroku.com/agile-tundra-98261.git'
試したこと
・(https://devcenter.heroku.com/articles/python-support#supported-runtimes)を参照して、
対応しているバージョンのpythonをpyenv経由でインストール
・バージョンの確認
$ python --version Python 3.8.2
・その上でruntime.txtの書き換え
ディレクトリ構造
・Aまで移動、A以下の構造は以下の通り
A/
├ main.py/
├ Procfile/
├ Requirements.txt/
├ Runtime.txt/
runtime.txt
python-3.8.2
試したこと2
・gitinitから再度実行
結果
ERROR: Could not find a version that satisfies the requirement clyent==1.2.2 (from -r /tmp/build_a70704366f1d4dd5b1a76e88e8b511be/requirements.txt (line 32)) (from versions: 0.1.0, 0.2.0, 0.2.1, 0.3.0, 0.3.2, 0.3.3, 0.3.4, 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.2.1) remote: ERROR: No matching distribution found for clyent==1.2.2 (from -r /tmp/build_a70704366f1d4dd5b1a76e88e8b511be/requirements.txt (line 32)) remote: ! Push rejected, failed to compile Python app. remote: remote: ! Push failed remote: Verifying deploy... remote: remote: ! Push rejected to agile-tundra-98261. remote: To https://git.heroku.com/agile-tundra-98261.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://git.heroku.com/agile-tundra-98261.git'
その他
・3.8.2はhomebrewを用いてインストールしたが、3.7.4はanacondaを用いてインストールした(はず)
・ローカル環境での動作は確認済み
宜しくお願いします。
あなたの回答
tips
プレビュー