This question has been flagged
4 Replies
19860 Views

I am using openerp v7.0 on windows 7. I want to create a new report for my custom module. I had downloaded report_aeroo,report_aeroo_ooo,report_aeroo_sample. Put it in addons folder and update the module list. But it throws error "Import Error:no module named aeroolib". Then i tried to download the module. But i didnt get any module named aeroolib. Can any one help me?

Thanks...

Avatar
Discard
Best Answer

This looks like you are missing the python library for Aeroo, AerooLib you can find this here: https://launchpad.net/aeroolib

After getting and un-archiving the file place it within your python path witch in your case being on windows is typically: C:\Python27\Lib, but this can change depending on how python was installed.

If you aren't seeing the areoo_reports module here are a few suggestions:

  1. Make sure you update your modules. The easiest way to do this is hitting the "Update Modules" link on the left hand side menu of the Settings tab.

  2. The "Apps" menu will show modules from Openerp's remote servers, if you installed the file in the addons path locally the modules will not be there, instead use the "Installed Modules" menu. From there you can see what is not installed by clicking the X next to "Installed" in the search box on the upper right hand corner.

Hope this helps, and best of luck.

Avatar
Discard
Author

I add aeroolib in C:\Python33\Lib. But it again shows error. What will i do? This aeroolib folder contains another aeroolib folder,this contains _init_.py file. Which folder i need to put in Lib folder? Again i'm stuck, need help.

Best Answer

Hi,

this is duplicate question of :

https://accounts.openerp.com/forum/Help-1/question/6244?comment=6700#comment-6700

thanks to verify first before to post question.

Bye

Avatar
Discard
Best Answer

Hi,

even if this is not a duplicate question ....., and this answer is not acceptable .... , and I contribute just to have more karma, like in mail I received,

answer to this question "no module named aeroolib", is answered here :

here

Bye

Avatar
Discard
Best Answer

Hello,

Try this one:


cd ~
wget https://launchpad.net/aeroolib/trunk/1.0.0/+download/aeroolib.tar.gz
tar xfvz aeroolib.tar.gz 
cd aeroolib
sudo python setup.py install

Avatar
Discard