Django应用程序的Web托管

2024-04-26 18:45:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我发现了一个用Django(busylissy.com)编写的不错的项目管理应用程序。不幸的是,他们在上面写道他们计划关闭它,并将其作为开源发布,以便进一步开发。我在考虑主持ixwebhosting.com网站对于基本的linux程序,但我不确定这是否可行,所以这基本上就是问题所在。在

我只能访问基本配置,所以不能在服务器上安装任何东西。在要求.txt,应用程序列出以下内容:

 # **Django**
 Django==1.1

 # **Imaging**
 http://effbot.org/downloads/Imaging-1.1.6.tar.gz

 # **STDImage**
 -e git+git://github.com/gearheart/django-stdimage.git#egg=stdimage

 # **Django AuthOpenID**
 -e hg+https://wunki@bitbucket.org/benoitc/django-authopenid#egg=django_authopenid

 # **Django registration**
 -e hg+https://wunki@bitbucket.org/ubernostrum/django-registration#egg=registration

 # **Tagging**
 -e svn+http://django-tagging.googlecode.com/svn/trunk#egg=tagging

 # **Authority**
 -e hg+https://wunki@bitbucket.org/jezdez/django-authority#egg=authority

 # **Filebrowser**
 -e svn+http://django-filebrowser.googlecode.com/svn/trunk#egg=filebrowser

 # **Markdown**
 -e git+git://gitorious.org/python-markdown/mainline.git#egg=markdown

 # **Treebeard**
 -e svn+http://django-treebeard.googlecode.com/svn/trunk/#egg=treebeard

 # **Locale url**
 -e svn+http://django-localeurl.googlecode.com/svn/trunk/#egg=localeurl

 # **Thumbnail**
 -e hg+https://sorl-thumbnail.googlecode.com/hg/#egg=sorl-thumbnail

     # **DateUtil**
 http://labix.org/download/python-dateutil/python-dateutil-1.4.1.tar.gz

有没有机会构建一个包含了所有这些先决条件的自包含版本,它不需要比mod\upython更多的东西,或者我应该开始寻找其他工具吗?在


Tags: djangohttpsorggitcomhttpbitbucketegg
2条回答

它有需要编译代码(如PIL)的依赖项。我不太清楚“basiclinux程序”是什么意思,或者你所说的“自包含”是什么意思,但是在任何普通的linux机器上安装这些依赖项是很简单的。在某些共享托管平台上,如果没有可用的已编译lib,并且不允许您添加自己的lib,则会遇到问题,等等

也不要使用mod python,使用mod_wsgi

你可以用virtualenv(http://pypi.python.org/pypi/virtualenv)在

相关问题 更多 >