Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Can report_aeroo_ooo work with Ubuntu 13.10?

Subscribe

Get notified when there's activity on this post

This question has been flagged
4 Replies
10659 Views
Avatar
Michael Telahun

I just upgraded my development machine to Ubuntu 13.10 and report_aeroo_ooo no longer loads. The problem seems to be that the libreoffice in 13.10 uses python 3 while the openerp server is being run with python 2.7. I tried copying uno.py and unohelper.py from python3/dist-packages to report_aeroo_ooo, but that didn't work either. The exact error message is:

Warning! Unmet python dependencies!
dynamic module does not define init function (initpyuno)
dynamic module does not define init function (initpyuno)
No module named com.sun.star.beans
No module named com.sun.star.uno
No module named com.sun.star.connection
No module named com.sun.star.beans
No module named com.sun.star.lang
No module named com.sun.star.io
No module named com.sun.star.io

Does anyone know how I can get report_aeroo_ooo to work?

2
Avatar
Discard
Avatar
sepdau
Best Answer

I met problem too, it take me for hours to solve. Problem is in 13.10 don't support python-uno for python2.x like Ubuntu 13.04 raring before.

Here is solution: Very simple thought install a version support python-uno then I find the build of LibreOffice PPA for Ubuntu.

You shouldn't waste time on download build DEB from libreoffice official it not compatible in this situation. first you remove libreoffice in your machine

sudo apt-get purge libreoffice*

then remove related

sudo apt-get purge openoffice.org-dtd-officedocument1.0 python-uno python3-uno uno-libs3 ure

then

sudo apt-get autoremove

then go there https://launchpad.net/~libreoffice/+archive/ppa/+packages then you download this build

libreoffice - 1:4.1.4~rc2-0ubuntu1~raring1~ppa1

The file you will download is

 libreoffice-base-core_4.1.4~rc2-0ubuntu1~raring1~ppa1_amd64.deb 
libreoffice-writer_4.1.4~rc2-0ubuntu1~raring1~ppa1_amd64.deb 
libreoffice-calc_4.1.4~rc2-0ubuntu1~raring1~ppa1_amd64.deb 
libreoffice-core_4.1.4~rc2-0ubuntu1~raring1~ppa1_amd64.deb 
libreoffice-common_4.1.4~rc2-0ubuntu1~raring1~ppa1_all.deb
python-uno_4.1.4~rc2-0ubuntu1~raring1~ppa1_amd64.deb

You should install libreoffice-common_4.1.4 first then libreoffice-core then libreoffice-base-core then writer and calc and python-uno --> this is what we need.

1
Avatar
Discard
Pascal Tremblay

Is it still a good solution?

Pascal Tremblay

On launchpad, I have found only version 4.3.4, It uses python3 uno.

Muszik Adrián

Found a link that provides the debs mentioned above: https://launchpad.net/~libreoffice/+archive/ubuntu/ppa/+sourcepub/3744128/+listing-archive-extra

Avatar
Michael Telahun
Author Best Answer

The solution turns out to be a little complicated. I'll write a blog post to further expand on this but basically:

  • Install OpenERP in a virtualenv (this had its own set of hurdles I had to overcome)
  • Install an older version of Libreoffice (I installed ver. 3.7.2) into the virtualenv
  • Append the path to the program subdirectory of the libreoffice installation to $PYTHONPATH
1
Avatar
Discard
Yug Faa

How we can do this : Install an older version of Libreoffice (I installed ver. 3.7.2) into the virtualenv ? I know that uno.py and unohelper.py are not problem, Please help us

Avatar
Mario Arias Badila
Best Answer

I switched from LibreOffice to Apache OpenOffice 4... They still use python 2.7 so it just works...

0
Avatar
Discard
Avatar
Juan José Scarafía
Best Answer

Hi! yes, I think the problem is pyuno. You should replace python3-uno by python-uno. Try sudo apt-get install python-uno

-1
Avatar
Discard
Michael Telahun
Author

python-uno no longer exists on Saucy. It has been replaced by libreoffice-script-provider-python, which is based on python 3.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now