Skip to Content
Odoo Меню
  • Увійти
  • Спробуйте це безкоштовно
  • Додатки
    Фінанси
    • Бухоблік
    • Виставлення рахунку
    • Витрати
    • Електронні таблиці (BI)
    • Документи
    • Підпис
    Продажі
    • CRM
    • Продажі
    • POS Магазин
    • POS Ресторан
    • Підписки
    • Оренда
    Веб-сайти
    • Конструктор веб-сайту
    • Електронна комерція
    • Блог
    • Форум
    • Живий чат
    • Електронне навчання
    Ланцюг поставок
    • Склад
    • Виробництво
    • PLM
    • Купівлі
    • Технічне обслуговування
    • Якість
    Кадри
    • Співробітники
    • Рекрутинг
    • Відпустки
    • Оцінювання
    • Рекомендації
    • Автотранспорт
    Маркетинг
    • Маркетинг соцмереж
    • Email-маркетинг
    • SMS-маркетинг
    • Події
    • Автом. маркетингу
    • Опитування
    Послуги
    • Проект
    • Табелі
    • Виїзне обслуговування
    • Служба підтримки
    • Планування
    • Призначення
    Продуктивність
    • Обговорення
    • Схвалення
    • IoT
    • IP-телефонія
    • База знань
    • WhatsApp
    Сторонні модулі Odoo Studio Платформа Odoo Cloud
  • Сфери
    Роздрібна торгівля
    • Книжковий магазин
    • Магазин одягу
    • Магазин меблів
    • Продуктовий магазин
    • Магазин будівельних матеріалів
    • Магазин іграшок
    Food & Hospitality
    • Бар та паб
    • Ресторан
    • Фастфуд
    • Guest House
    • Дистриб'ютор напоїв
    • Hotel
    Real Estate
    • Real Estate Agency
    • Архітектурна фірма
    • Будівництво
    • Управління нерухомістю
    • Садівництво
    • Асоціація власників нерухомості
    Consulting
    • Accounting Firm
    • Партнер Odoo
    • Marketing Agency
    • Юридична фірма
    • Придбання Талантів
    • Аудит та сертифікація
    Виробництво
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Корпоративні подарунки
    Здоров'я & Фітнес
    • Спортивний клуб
    • Оптика
    • Фітнес-центр
    • Практики здоров'я
    • Аптека
    • Салон краси
    Trades
    • Ремонтник
    • IT-обладнання та Підтримка
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Екологічна агенція
    • Оренда білбордів
    • Фотографія
    • Лізинг велосипедів
    • Реселлер програмного забезпечення
    Browse all Industries
  • Спільнота
    Навчання
    • Навчальний посібник
    • Документація
    • Сертифікації
    • Тренування
    • Блог
    • Подкаст
    Сприяйте Освіті
    • Програма навчання
    • Бізнес гра Scale Up!
    • Відвідайте Odoo
    Отримайте програмне забезпечення
    • Завантаження
    • Порівняйте версії
    • Релізи
    Співпрацюйте
    • Github
    • Форум
    • Події
    • Переклади
    • Стати партнером
    • Services for Partners
    • Зареєструйте вашу бухгалтерську фірму
    Отримайте послуги
    • Знайдіть партнера
    • Знайдіть бухгалтера
    • Зустріньтеся з консультантом
    • Послуги з впровадження
    • Референси клієнтів
    • Підтримка
    • Оновлення
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Отримати демо
  • Ціни
  • Допомога

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

  • CRM
  • e-Commerce
  • Бухоблік
  • Склад
  • PoS
  • Проект
  • MRP
All apps
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Допомога

how can I resolve dependency for Module called unidecode?

Підписатися

Отримуйте сповіщення про активність щодо цієї публікації

Це запитання позначене
installationmodule
6 Відповіді
53630 Переглядів
Аватар
gunnar

I try to install product_custom_attributes on an onsite v7 installation. I Have downloaded the zip file, unpacked and moved it to /opt/openerp/v7/addons. But trying to install it by clicking "install" gives me an error

Unable to install module "base_custom_attributes" because an external dependency is not met: No module named unidecode

that's pretty clear basically but I couldn't find any Module called "unidecode" so I am a little stuck. While looking around I found this https://github.com/buke/openerp-product-x-attributes but I am not really sure how this is related

0
Аватар
Відмінити
gunnar
Автор

seems that the error message you get in OpenERP "no module named unidecode" is a little misleading. This is not a Module in OpenERP but a python package called unidecode

Аватар
Gustavo
Найкраща відповідь

You need to install the unidecode Python package from PIP. 

https://pypi.python.org/pypi/Unidecode

The way to do that is in the terminal do:

# sudo pip install unidecode

Hope this helps

7
Аватар
Відмінити
gunnar
Автор

to install pip on debian/ubuntu you do apt-get install pyhton-pip

gunnar
Автор

yes, thanks that worked

Ankit H Gandhi(AHG)

Thanks @ Gustavo this fully work

Аватар
Eric
Найкраща відповідь

If you're using the one-click full install of OpenERP you will see that with "pip install unidecode" won't work. That's because the one-click install comes with its own python packages.

So you need to download the zipped file from: https://pypi.python.org/pypi/Unidecode

Then you need to unzip it and copy the "unicode" folder and paste it into the /Server/server/ folder. In my case OpenERP v7 is installed in, c:\Program Files (x86)\OpenERP 7.0-20130412-232402\Server\server

Restart the server and that's it :)

2
Аватар
Відмінити
Аватар
Andres Rojas
Найкраща відповідь

Today is Apr 27, 2023 and after trying a lot of things, the answer of Eric from 2014 was the one that worked for me. I downloaded the  "Unidecode-1.3.6.tar.gz" file from https://pypi.org/project/Unidecode/#files. Then I unzipped the file and got a folder called "Unidecode-1.3.6". Inside that I found all the files and a folder called "unidecode". I copied that folder and just pasted it in my server folder where the odoo-bin and odoo.conf files are located. Restarted the server and "Update Apps List" on the Odoo platform (Developer mode on). I installed the module that was having the error and it worked perfectly! No errors. Thanks Eric.

2
Аватар
Відмінити
ruben

I can confirm after make all other things, of course installed unicode with pip, your solution it´s the right path and the only way to do it I could find

Аватар
Andrés
Найкраща відповідь

Answers of Eric and Andres Rojas works for me as well.

0
Аватар
Відмінити
Аватар
Michael Yeung
Найкраща відповідь

To do this on docker, login the bash

pip3 install unidecode

restart your container 

0
Аватар
Відмінити
Аватар
Jean Marc Le Goff
Найкраща відповідь

with ubuntu

sudo apt-get install python-unicodecsv

and restart the server




0
Аватар
Відмінити
Enjoying the discussion? Don't just read, join in!

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

Реєстрація
Related Posts Відповіді Переглядів Дія
How to run a python function right after installing a module?
installation module
Аватар
2
черв. 20
21053
How to load third party modules in Odoo 9 Enterprse?
installation module
Аватар
0
бер. 16
6805
how to move a modules inside the /opt/openerp folder?
installation module
Аватар
Аватар
1
лют. 16
7212
installation module tiers impossible
installation module
Аватар
0
бер. 15
5346
basic steps to install my first module
installation module
Аватар
Аватар
1
бер. 15
5541
Спільнота
  • Навчальний посібник
  • Документація
  • Форум
Open Source
  • Завантаження
  • Github
  • Runbot
  • Переклади
Послуги
  • Хостинг Odoo.sh
  • Підтримка
  • Оновлення
  • Кастомні доробки
  • Навчання
  • Знайдіть бухгалтера
  • Знайдіть партнера
  • Стати партнером
Про нас
  • Наша компанія
  • Торгові активи
  • Зв'яжіться з нами
  • Вакансії
  • Події
  • Подкаст
  • Блог
  • Клієнти
  • Юридичні документи • Конфіденційність
  • Безпека
الْعَرَبيّة 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 - це набір програм для роботи з відкритим кодом, які охоплюють всі ваші потреби компанії: CRM, електронна комерція, бухгалтерський облік, склад, точка продажу, управління проектами тощо.

Унікальна пропозиція Odoo - це одночасно дуже проста у використанні та повністю інтегрована.

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