Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to set Python version for OpenERP 7 on Windows?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
windowspythonversionv7
1 Répondre
14638 Vues
Avatar
René Schuster

I have a local installation of OpenERP 7 on a windows machine. I have installed it via the latest All-in-one exe. On my machine, I have multiple versions of Python installed (2.7, 3.3).

Is there a way to tell OpenERP which version to use after installation?
(Like there is the line #!/usr/bin/python2.6 in /usr/bin/openerp-server)

 

UPDATE:

I'am porting CalDAV module to version 7.0.
When I try to install the module, I get an ImportError:

File "C:\Program Files (x86)\OpenERP 7.0-20141104-021038\server\openerp\addons\document_webdav\webdav.py", line 40, in <module>
ImportError: No module named DAV

The CalDAV module has document_webdav dependency. Checking line 40 in webdav.py shows:

35: try:
36:     from pywebdav.lib import utils
37:     from pywebdav.lib.propfind import PROPFIND
38:     from pywebdav.lib.report import REPORT
39: except ImportError:
40:     from DAV import utils
41:     from DAV.propfind import PROPFIND
42:     from DAV.report import REPORT

So I tried to install DAV for Python. Which failed: module not found.

Next I treid to install PyWebDav for Python. Success. For both version 2.7 and 3.3.

Trying to install my CalDAV module threw the same error.

Opening Python console and importing pywebdav works for both versions. "from pywebdav.lib import utils" works for 2.7 and fails for 3.3 ...
So I naively thought my OpenERP server would use python 3.3 instead of 2.7 ...

After Med Said BARA's answer I checked my openerp/server folder. pywebdav 0.9.8 module is existing. But yet the quoted try/except block from above tries to import DAV... Why?

 

UPDATE:

Installed PyDAV for python 2.7.

Copied the new module "WebDAV" to my openerp/server folder.

Still the same ImportError on module installation. Since the module is 'WebDAV' not 'DAV'. And WebDAV has no utils, REPORT, PROPFIND anyway...

 

UPDATE:

I think I finally understand the quoted try-except-block. The try is for pywebdav 0.9.8 while the except is for older pywebdav versions, that have the DAV / DAVSERVER folder structure, instead of the lib.

But still, I have pywebdav 0.9.8 installed. It should work!

 

Thanks.

0
Avatar
Ignorer
Med Said BARA

You must install PyDAV from https://pypi.python.org/pypi/PyDAV/0.21

René Schuster
Auteur

Installed it. Didn't help.

Med Said BARA

Did you copied the DAV folder from Python27\Lib\site-packages\ to Program Files (x86)\OpenERP xx\server and restarted your server

René Schuster
Auteur

There is no 'DAV' folder. Only a 'WebDAV' folder. I had restarted the server.

Med Said BARA

utils, report and propfind are there !!!

Med Said BARA

Another trick is to look under X:\Python27\Lib\site-packages\ if there are folders DAV or WebDAV with .......-py2.7.egg extension, open those folder, there you can find the DAV folder (copy this one)

Med Said BARA

Any progress?

Med Said BARA

In fact you can use DAV or Webdav till the files utils, report and propfind are there. Try to download PyWebDAV 0.9.4.1 packed with DAV and DAVSERVER folder) or PyWebDAV 0.9.8 (packed with pywebdav folder and lib and server subfolder): https://pypi.python.org/pypi/PyWebDAV/0.9.4.1 or https://pypi.python.org/pypi/PyWebDAV/0.9.8

Med Said BARA

Any progress ?

René Schuster
Auteur

Your endurance is admirable. Thanks. As mentioned, I now have both, the PyWebDav 0.9.8 and WebDAV 0.21 module in my server folder. It's still not working.

Med Said BARA

is it the same error ?

René Schuster
Auteur

yes

Med Said BARA

Very strange, but keep on and try with the 0.9.4.1 version, istall it and copy the two folders DAV and DAVSERVER to ...\Program Files (x86)\OpenERP xx\server

René Schuster
Auteur

That worked. Since you already gave the answer to the original question (OpenERP uses its own installation of Python in the server folder) I will accept your answer. Thanks for you great help. But nonetheless I don't know why version 0.9.8 of pywebdav is not working...

Med Said BARA

I think there is something wrong in the webdav.py code. I will try to investigate further and keep you informed. Last thing, take a look at https://github.com/initOS/openerp-dav, maybe you will find it interesting (Do not use along with documant_webdav - Read the issue).

Avatar
Med Said BARA
Meilleure réponse

Under Windows OpenERP 7 use his own python 2.7, take a look under ../Program Files (x86)/OpenERPxx/server/.. (or where you have installed OpenERP).

 

Lines added after comment from René Schuster

This is probably due to a missing external dependency in OpenERP (a Python dependency).

What you should do: is to download The_related_Package for the Version 2.7 (preferably  a windows auto-install package - see at http://www.lfd.uci.edu/~gohlke/pythonlibs/ if you can find it or by using easy_install) and Install the package. After install you can find this package under X:\Python27\Lib\site-packages\ , copy "The_related_Package" folder from X:\Python27\Lib\site-packages\The_related_Package to Y:\Program Files (x86)\OpenERP xx\server\. This way OpenERp will find the external dependency when needed.

Let's resume:  I think that your PYTHONPATH variable is pointing to the 3.3 Python folder, you have to change it to point to the 2.7

Follow http://www.katsbits.com/tutorials/blender/python-path-variable.php

Reinstall PyDAV ..... and copy the DAV folder as described before

2
Avatar
Ignorer
René Schuster
Auteur

So under windows OpenERP always uses Python 2.7? But I get import errors on module installation that manually only occur with my Python 3.3.

Med Said BARA

Can you tell me more about the IMPORT ERROR ...

René Schuster
Auteur

Thanks for your help. I have updated my question.

René Schuster
Auteur

Just for clarification: As far as I can see now, OpenERP has nothing to do with any installed python. It installs and uses its own python. Concluding you don't need to have python installed to run an OpenERP server on WINDOWS. (btw: my environment variables contain the folders of both python versions)

Med Said BARA

Yes and No. Yes because it uses his own python, and No because you need to have python installed especially when we encounter an external python depency need (such in your case, with pywebdav), in this case we need to install this dependency in python first (for the same version 2.7 as in OpenERP) and after that copy it to .....openerp/server folder. You can have more than 2 python versions installed, but the PYTHONPATH var must point to only one!

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Which python version is recommended? Résolu
v6.1 python version v7
Avatar
Avatar
Avatar
Avatar
3
mars 15
33210
Please define these Python Fetch types
python v7
Avatar
2
mars 24
28990
XmlHttpRequestError in web-client when connecting via IP Résolu
windows v7
Avatar
Avatar
Avatar
Avatar
Avatar
7
déc. 23
32315
How add a float to a Datetime field.
python v7
Avatar
Avatar
Avatar
Avatar
3
mars 15
9658
How is the All-in-one Windows installer built from source?
windows v7
Avatar
Avatar
1
mars 15
6607
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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