1

Pythonフレームワーク「Flask」を使用してPythonアプリケーションを作成しました。次のドキュメントを使用しましたhttps://devcenter.heroku.com/articles/python

これを実行すると:

git push heroku マスター

herokuにプッシュした後、次のエラーが発生します。

Counting objects: 8, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (8/8), 1.62 KiB, done.
Total 8 (delta 0), reused 0 (delta 0)

-----> Python app detected
-----> No runtime.txt provided; assuming python-2.7.4.
-----> Preparing Python runtime (python-2.7.4)
-----> Installing Distribute (0.6.36)
-----> Installing Pip (1.3.1)
-----> Installing dependencies using Pip (1.3.1)
       Downloading/unpacking BeautifulSoup==3.2.1 (from -r requirements.txt (line 1))
         Downloading BeautifulSoup-3.2.1.tar.gz
         Running setup.py egg_info for package BeautifulSoup

       Downloading/unpacking CDApplet==1.0 (from -r requirements.txt (line 2))
         Could not find any downloads that satisfy the requirement CDApplet==1.0 (from -r requirements.txt (line 2))
       No distributions at all found for CDApplet==1.0 (from -r requirements.txt (line 2))
       Storing complete log in /app/.pip/pip.log

 !     Push rejected, failed to compile Python app

To git@heroku.com:frozen-brushlands-5131.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:frozen-brushlands-5131.git'

どんな助けでも大歓迎です。

4

4 に答える 4

1

同じエラーが発生しました。関連する依存関係を削除してみてください (または正しい名前を追加してください)。その後、次のようにします。 git add .

git commit -m "commit-message"
git push heroku master

あなたは今すぐ行く準備ができているはずです。

于 2013-11-14T16:44:45.960 に答える
0

私は同じ問題を抱えており、修正しました

git add *
git commit -m "initial commit"
git push heroku master

これがお役に立てば幸いです。

于 2015-02-17T20:19:02.903 に答える