如何在本地安装django第三方应用程序?
我正在制作一个小型 django 项目,在其中使用 South 等第三方应用程序。我可能会为这个项目租用一台主机,所以我将无法通过 easy_install 安装这些应用程序。有没有办法在我的项目中安装这些应用程序?
I'm making a small django project where I use third-party apps like South and others. I will probably rent a host to this project, so I won't be able to install these apps via easy_install. Is there a way to install these apps inside my project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
virtualenv 对此非常有用,尤其是与 点.
virtualenv is great for this, especially when combined with pip.
例如:django-grappelli。安装 python 设置工具并执行下一步
,然后添加到已安装的应用程序
这就是您的问题的方式
For example:
django-grappelli
. Install python setup tools and do the next stepand then add to the installed apps
This is the way for your question