我正在尝试通过我的终端窗口运行这个简单的 python 脚本:(它是 Bottlepy 网站上的示例)
from bottle import route, run, template
@route('/hello/:name')
def index(name='World'):
return template('<b>Hello {{name}}</b>!', name=name)
run(host='localhost', port=8080)
为了做到这一点,我从终端安装了 Bottlepy 使用
easy_install bottle
将其安装在 /Library/Frameworks/Python.framework/Versions/4.2.30201/bin
当我尝试在终端窗口中运行我的 python 文档时:
cd ~/Dropbox/Work/MongoDB/
python hello.py
它返回:
ImportError: No module named bottle
我不确定该怎么做才能将瓶子放在正确的位置以使其正常工作。我确定这一定很愚蠢,但我想不出该怎么做。谢谢!!xx