我正在使用python版本2.7.10(我的机器上的默认python)。我有一个python模块,我想测试。模块中的第一个(也是唯一的)导入是:
import web
urls = (
'/hello', 'index'
)
app = web.application(urls, globals())
render = web.template.render('templates/', base="layout")
class index:
def GET(self):
return render.hello_form()
def POST(self):
form = web.input(name="Nobody", greet="Hello")
greeting = "%s %s" % (form.greet, form.name)
return render.index(greeting = greeting)
if __name__ == "__main__":
app.run()
该模块名为app.py
,位于我项目的bin
目录下。我在此目录中也定义了__init__.py
。我使用nose运行相应的测试模块,名为app_tests.py
,如下所示:
nosetests
我收到以下错误:
======================================================================
ERROR: Failure: ImportError (No module named web)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/nose/loader.py", line 418, in loadTestsFromName
addr.filename, addr.module)
File "/usr/local/lib/python2.7/site-packages/nose/importer.py", line 47, in importFromPath
return self.importFromDir(dir_path, fqname)
File "/usr/local/lib/python2.7/site-packages/nose/importer.py", line 94, in importFromDir
mod = load_module(part_fqname, fh, filename, desc)
File "/Users/dev/python/workspace/projects/gothonweb/tests/app_tests.py", line 2, in <module>
from bin.app import app
File "/Users/dev/python/workspace/projects/gothonweb/bin/app.py", line 1, in <module>
import web
ImportError: No module named web
----------------------------------------------------------------------
我不知道为什么会这样,因为我可以毫无问题地运行和执行app.py
。
我从项目根目录运行nosetests
命令。项目结构如下:
devs-MacBook-Pro:gothonweb dev$ ls -R
bin docs gothonweb setup.py templates tests
./bin:
__init__.py __init__.pyc app.py app.pyc
./docs:
./gothonweb:
__init__.py __init__.pyc
./templates:
hello_form.html index.html layout.html
./tests:
__init__.py app_tests.py gothonweb_tests.py tools.py
__init__.pyc app_tests.pyc gothonweb_tests.pyc tools.pyc
我在/usr/bin/python
中使用系统python,因为我有一些vim插件,如果我使用我用brew安装的python,它将无法工作。我确实链接了通过brew安装的python(在/usr/local/bin/python
,版本2.7.13下)并尝试了相反,但是我得到了同样的错误,说web
无法找到。我有什么想法可以解决这个问题吗?
答案 0 :(得分:2)
当您收到此错误时
ImportError:没有名为web
的模块
这意味着你没有一个模块,你必须安装它或将它放在你的项目目录中(实际上是项目PATH
)
您需要安装python-webpy
sudo apt-get install python-webpy
或使用pip
安装:
sudo pip install web.py
阅读this手册。