我尝试在 Windows -64bit- 上安装 web.py
我没有安装。
错误:“ ImportError:没有名为'utils'的模块”
from __future__ import generators
import utils, db, net, wsgi, http, webapi, httpserver, debugerror
import template, form
import session
from utils import *
from db import *
from net import *
from wsgi import *
from http import *
from webapi import *
from httpserver import *
from debugerror import *
from application import *
from browser import *
try:
import webopenid as openid
except ImportError:
pass # requires openid module
我用python3.3
错误的原因是我使用python3.3吗?
我尝试使用 easy_install 进行安装。
但是又报错了。
Easy_install 需要 python2.3。
所有的问题都是python 3.3?
如何在python中导入命名网络?
谢谢..!!