Install Python Module in local install of web2py Install Python Module in local install of web2py windows windows

Install Python Module in local install of web2py


web2py recognize any module you have in your local Python installation, unless you have a module with the same name under /modules folder of your application.

If you are on windows I do not recommend the use of .exe version of web2py (this version is only for studies) and it has a self contained isolated Python interpreter.

Make sure you are using source version of web2py and Python 2.5+ on your windows.

web2py should import any module from your Python path, also you can drop modules in app/modules folder ], then web2py will check there first when import something.


If you are using the Windows binary version (i.e., web2py.exe), note that it includes its own Python interpreter, which means it will not use your installed version of Python and will therefore not see any of your installed modules. You can put Python modules in the /web2py/site-packages folder (which is created the first time you run the binary version), but the better approach is probably just to run the source code version of web2py. It's just as easy -- simply download and unzip the source code package, and instead of clicking on web2py.exe, you click on web2py.py (or at a command prompt, cd to the web2py directory and enter python web2py.py).


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