Skip to Content
Menu
This question has been flagged
3 Replies
2493 Views

Hello.

I had try to install Odoo 17 using "Packaged installers", looks like I install all the necesary packages, but once I run:


apt-get install odoo -y 


+/- 97% I got this 2 errors:

Line 44


    match action.state:


SyntaxError: invalid syntax

         

Line 58


    match algorithm:


SyntaxError: invalid syntax


Could some one give some light here? I say looks like I install all the packages.

Odoo 17 under Ubuntu Jammy Jelly Fish 20.04.6LTS, thanks.
NOTE: I remove part of the error because odoo forum won't allow me to put the whole description.

Avatar
Discard
Author

Hi.
This was the libraries missing, now is working.
apt-get install libxml2-dev libxslt1-dev libsasl2-dev libldap2-dev libssl-dev libffi-dev libjpeg-dev libpq-dev
Thanks.

Author

Is hard to answer u guys, the forum becasue of my KARMA stuff cannot reply to your post and appreciated your help.
I finally fix the issue, your post Cybrosys help with some libraries missing on this Odoo version.
It works on Debian 12 and Ubuntu 22, thanks all!!!

Best Answer

Hi,

Odoo 17 offers more performance enhancements, an enhanced user interface, and new functionality. PostgreSQL and Python 3.10 were needed for Odoo 17's database management system.

Please go through our blog to know about how to install odoo 17
How to Install Odoo 17 on Ubuntu 20.04 LTS Server


Hope it helps

Avatar
Discard
Author Best Answer

Hi.

Looks like I have the python version or need to upgrade?

root@odoo17srv:/home/xuser# python3 --version

Python 3.10.12

root@odoo17srv:/home/xuser#

Thanks for your answer.

Avatar
Discard
Best Answer

It seems like the error you're encountering is related to syntax issues in the Python code of Odoo 17 during the installation process. The `match` statement was introduced in Python 3.10, and if you're using an earlier version, you might face syntax errors.


To resolve this issue, you can either upgrade your Python version to 3.10 or later


Here are steps to check your Python version and upgrade it if necessary:


1. **Check Python Version:**

   Open a terminal and run the following command to check your Python version:


   ```bash

   python3 --version

   ```


   Make sure the version is 3.10 or later. If it's an earlier version, consider upgrading.


2. **Upgrade Python:**

   If your Python version is not 3.10 or later, you can upgrade it using the following commands:


   ```bash

   sudo apt update

   sudo apt install python3.10

   ```


   You may also need to update the symbolic link for `python3`:


   ```bash

   sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1

   ```


   Set the new version as the default:


   ```bash

   sudo update-alternatives --config python3

   ```


   Choose the number corresponding to Python 3.10.


3. **Re-run Odoo Installation:**

   After upgrading Python, try re-running the Odoo installation:


   ```bash

   sudo apt-get install odoo -y

   ```


   This should hopefully resolve the syntax errors related to the `match` statement.


Avatar
Discard