使用 Anaconda 部署到 Heroku

编程入门 行业动态 更新时间:2024-10-27 21:14:32
本文介绍了使用 Anaconda 部署到 Heroku的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个想要部署到 Heroku 的 Django 应用程序.我尝试按照此处的说明进行操作:devcenter.heroku/articles/getting-started-with-django它告诉你使用虚拟环境.

I have a Django app I want to deploy to Heroku. I tried to follow the instructions here: devcenter.heroku/articles/getting-started-with-django which tells you to use virtual env.

但是,我使用的是 Anaconda,它不能很好地与虚拟环境配合使用.有没有人将带有 Anaconda 的 Django 应用程序部署到 Heroku 并且可以指导我完成这些步骤?

However, I'm using Anaconda, which isn't playing nicely with virtual env. Has anyone deployed a Django app with Anaconda to Heroku and can lead me through the steps?

推荐答案

我也遇到了这个问题.我想部署一个使用 numpy、sckit-learn 和其他一些 conda 包的 django 应用程序.我使用了 conda-buildpack 但无法从 django 内部访问已安装的软件包.所以我创建了一个扩展 PYTHONPATH 的分支,并删除了使用 pip install -r requirements.txt 安装依赖项的部分,因为这部分与 memcached on heroku.现在我有一个 多个 buildpack 设置使用默认的 heroku python buildpack 和 我的自定义 condas buildpack 分支requirements.txt 由 python buildpack 处理,conda-requirements.txt 由 conda buildpack 处理.对我来说就像一个魅力.

I had this problem too. I wanted to deploy a django app which use numpy, sckit-learn and some other conda packages. I used the conda-buildpack but the installed packages weren't accessible from inside django. So I created a fork which extended the PYTHONPATH and removed the part where dependencies installed withpip install -r requirements.txt because this part clashed with memcached on heroku. Now I have a multiple buildpack setup with the default heroku python buildpack and my custom condas buildpack fork The requirements.txt is processed by the python buildpack and the conda-requirements.txt by the conda buildpack. Works like a charm for me.

更多推荐

使用 Anaconda 部署到 Heroku

本文发布于:2023-10-28 02:12:04,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1535203.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Anaconda   Heroku

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!