Heroku Deploy Error : No matching distribution found for anaconda-client==1.6.14(Heroku 部署错误:没有为 anaconda-client==1.6.14 找到匹配的发行版)
问题描述
我尝试将使用 python 的 Dash 框架构建的应用程序部署到 Heroku.按照此处发布的部署说明进行操作.
I using trying to deploy an application built using python's Dash Framework to Heroku. Following the deploy instructions posted here.
推送到主存储库时遇到问题.它看起来与 anaconda 安装冲突.
I am having an issue when pushing to master repository. Conflict with anaconda installation it looks like.
Cmd: git push heroku master
Collecting anaconda-client==1.6.14 (from -r
/tmp/build_7c37a8969b8001471e926143aa44a460/requirements.txt (line 2))
remote: Could not find a version that satisfies the requirement
anaconda-client==1.6.14 (from -r
/tmp/build_7c37a8969b8001471e926143aa44a460/requirements.txt (line 2)) (from
versions: 1.1.1, 1.2.2)
remote: No matching distribution found for anaconda-client==1.6.14 (from
-r /tmp/build_7c37a8969b8001471e926143aa44a460/requirements.txt (line 2))
remote: ! Push rejected, failed to compile Python app.
remote:
remote: ! Push failed
remote: Verifying deploy...
remote:
remote: ! Push rejected to stroom-dash.
remote:
To https://git.heroku.com/stroom-dash.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/stroom-dash.git'
推荐答案
您正在使用 Heroku 的文档来部署不支持 Conda 运行时的 Python buildpack.Heroku 推荐的方法是使用 Docker(例如 here)将 Conda 运行时部署到Heroku.
You're using Heroku's documentation to deploy with the Python buildpack which doesn't support a Conda runtime. The Heroku recommended approach is to use Docker (example here) to deploy a Conda runtime to Heroku.
另一种选择是简单地使用 Conda buildpack 而不是 Docker 映像.
Another option would be to simply use a Conda buildpack instead of the Docker image.
这篇关于Heroku 部署错误:没有为 anaconda-client==1.6.14 找到匹配的发行版的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Heroku 部署错误:没有为 anaconda-client==1.6.14 找到匹


- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 沿轴计算直方图 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01