在 heroku 中部署一些更改时无法编译 python(权限被拒绝!)

Failed to compile python (Permission denied!) while deploying some changes in heroku

我在heroku中部署了一个github的项目。然后我使用 heroku slugs:download -a newocas

成功地用我的电脑克隆了项目

现在,在将项目部署回 heroku 时进行一些更改并进行提交后,一次又一次地产生相同的错误。

我正在使用 git bash 进行提交和部署。这是我的错误消息:

Sultan@Sultan-PC MINGW32 ~/newocas/app (master)
$ git push heroku master
Counting objects: 133, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (125/125), done.
Writing objects: 100% (133/133), 2.93 MiB | 229.00 KiB/s, done.
Total 133 (delta 3), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Python app detected
remote: /app/tmp/buildpacks/779a8bbfbbe7e1b715476c0b23fc63a2103b3e4131eda558669aba8fb5e6e05682419376144189b29beb5dee6d7626b4d3385edb0954bffea6c67d8cf622fd51/bin/steps/python: line 43: /app/.heroku/python/bin/pip: Permission denied
remote: -----> Installing pip
remote: -----> Installing requirements with pip
remote:        /app/tmp/buildpacks/779a8bbfbbe7e1b715476c0b23fc63a2103b3e4131eda558669aba8fb5e6e05682419376144189b29beb5dee6d7626b4d3385edb0954bffea6c67d8cf622fd51/bin/steps/pip-install: line 5: /app/.heroku/python/bin/pip: Permission denied
remote:  !     Push rejected, failed to compile Python app.
remote:
remote:  !     Push failed
remote: Verifying deploy....
remote:
remote: !       Push rejected to newocas.
remote:
To https://git.heroku.com/newocas.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/newocas.git'

这是我的 requirement.txt 文件

Flask==0.10.1 future==0.16.0

我试过了 - Pip not found when deploying Django app to Heroku , 这- Push rejected, failed to compile Python app, this- Heroku push rejected, failed to compile Python/django app (Python 2.7) and this -

但是还是报错!!!

谁能帮我解决这个问题

我已经解决了问题。我正在分享以下程序:

首先,在这种情况下使用 heroku slugs:download -a newocas 是行不通的。当使用 slugs 下载该应用程序后,它就无法链接到 heroku。

因此,解决方案是使用 git bash 在 pc 中克隆应用程序,然后在进行任何更改后进行提交,然后将更改推送到 heroku 应用程序。