Install Python Module in local install of web2py

后端 未结 3 1329
被撕碎了的回忆
被撕碎了的回忆 2021-02-15 11:37

I am running web2py on a Windows machine.

I\'m working on an application, but it keeps erroring because it says the module I\'m trying to use isn\'t installed. It is how

3条回答
  •  忘了有多久
    2021-02-15 11:57

    What about add your local module path into sys.path variable?

    sys.path.apend('/path/to/your/module/directory')

    By the way, which module is not found by web2py

提交回复
热议问题