ModuleNotFoundError: No module named 'bottle'

ModuleNotFoundError: No module named 'bottle'

这是我运行正在解决的问题:

我使用 anaconda 安装,后来使用 pip 安装:conda install -c conda-forge bottle

当我 运行 我在 spyder 中的代码时:

from bottle import run, post


@post('/')  
def main():  
    return 


if __name__ == '__main__':  
    run(host='localhost', port=8080, debug=True)

我明白了:

Bottle v0.12.18 server starting up (using WSGIRefServer())...
Listening on http://localhost:8080/
Hit Ctrl-C to quit.

但是当我在命令中尝试 运行 python bot.py 时,我得到:

Traceback (most recent call last):
  File "bot.py", line 1, in <module>
    from bottle import run, post
ModuleNotFoundError: No module named 'bottle'

明明安装了 bottle,为什么还显示这个错误?

我建议先安装 pip,然后 运行 命令

pip install bottle

在你的 shell.