姜戈 +在alwaysdata上部署MongoDB

发布于 2024-11-18 21:54:52 字数 393 浏览 2 评论 0 原文

我正在尝试在 DjanMon ="nofollow">mongotest.alwaysdata.net 直接使用 Django 和 MongoDB,不使用任何数据库引擎,仅使用 Pymongo。

部署时出现错误。没有 Pymongo(它是 MongoDB for python 的驱动程序)。我如何安装它或将其安装在该服务器上?

除此之外,还有关于我应该使用哪些设置来使用 Django 运行 MongoDB 的教程。我无法理解在 mongodb 的 settings.py 数据库中提供哪个引擎。

还有关于如何在云/虚拟主机上部署使用 MongoDB 的 Django 网站的教程吗?

I am trying to deploy DjanMon on mongotest.alwaysdata.net which uses Django and MongoDB directly without using any database engine just Pymongo.

An error sprang up while deployment. There is no Pymongo which is the driver for MongoDB for python. How do I install that or get that installed on that server?

Apart from that is there anywhere a tutorial on what settings should i use to run MongoDB with Django. I can't understand which engine to provide in database in the settings.py for mongodb.

Also is there any tutorial on how to deploy a Django Website that uses MongoDB on a cloud/ webhost?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘过的浮云 2024-11-25 21:54:52

如果服务器上有具有适当权限的 shell,则可以像安装任何其他 Python 包一样安装 PyMongo。要么:

easy_install pymongo

要么

pip install pymongo

(这些命令中的任何一个可能还需要在前面添加 sudo ,具体取决于权限以及您是否使用 virtualenv)

If you have a shell on the server with appropriate permissions, you can install PyMongo just like any other Python package. Either:

easy_install pymongo

or

pip install pymongo

(Either of these commands might also need sudo in front, depending on permissions and whether you're using virtualenv)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文