Forums

HOW TO start pythonanywhere?

I AM a Chinese,want to create a webapp in here,poor english,canyou help me?

可以呀 :-)

如果你不是想将一个现有的网页转放到 PythonAnywhere 上,而是想设立一个就全新的网页的话,那么你应该先点 "Web" 然后点 "add a new web app"。

这时候你要按 "next" 然后选择你想用的 web framework。这个就要看你的个人喜好啦-- 如果你不清楚的话也许你应该先读一下不同的网页框架的不同特点再下定论。

你一直跟随步骤选项按下去,成功以后就可以在 guistory.pythonanywhere.com 看到你的网页了!

add a new web app 点到最后一步提示连接不到服务器,可是文件夹和文件已经建立了(django),不知道是不是最后一步没成会少一些文件,然后back,在选择框架的时候选择最后一个,然后在bash里按照帮助文档里有关diango的内容建立应用,访问guistory.pythonanywhere.com可以看见hello world,可是访问admin/却not found,guistory_pythonanywhere_com_wsgi.py相关设置如下:

# To use your own django app use code like this:
import os
import sys
#
## assuming your django settings file is at '/home/guistory/mysite/settings.py'
path = '/home/guistory/guistory/'
if path not in sys.path:
    sys.path.append(path)
#
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
#
## then, for django >=1.5:
#from django.core.wsgi import get_wsgi_application
#application = get_wsgi_application()
## or, for older django <=1.4
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

不知道哪里错了,楼上的能不能留个QQ啊

[edited by admin: formatting]

我看了一下你真正的 guistory_pythonanywhere_com_wsgi.py。注意一下底部,其实并不是每一行都是注解。我们加了一个简单的 hello world。你要把那删除。

谢谢楼上的,删除了后面的部分缺失可以访问了,还是想要你的一个联系方式,可否?

Exception Type: TemplateDoesNotExist Exception Value: home.html 已经按照帮助文档新建了home.html ,urls和setting也改了 ,问什么说找不到呢?

如果你看一下你首页出现的错误信息中的详细追踪:

Template-loader postmortem

Django tried loading these templates, in this order:

    Using loader django.template.loaders.filesystem.Loader:
        /home/guistory/guistory/mysite/weixin/templates/home.html (File does not exist)
    Using loader django.template.loaders.app_directories.Loader:
        /usr/local/lib/python2.7/dist-packages/django/contrib/admin/templates/home.html (File does not exist)

你有一个 template 在 /home/guistory/guistory/mysite/weixin/templates/home.html 吗? 注意在 django 里面除了有 urls, views 及 settings 以外还有 templates, models, admins 等等比较常用。 这是我私人的 QQ: 2323786272,但是我平常也不用 QQ,也不可能长久在线。老实说其实真的是为你而设的啦!

/home/guistory/guistory/mysite/weixin/templates/home.html这个目录和文件都是有的啊 ,为什么他会说不存在呢

Your templates folder name has a an extra space in the front

上线啊,有问题请教