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 I can to install openERP 6.1 server and Web Client on a Mac OS X 10.7.5?

S'inscrire

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

Cette question a été signalée
v6.1installationmacosx
1 Répondre
9867 Vues
Avatar
Montse

Hello,

I want to install OpenERP 6.1 Server and the web Client too. I am a new user in Mac OS, but first of to use mac i used linux (ubuntu) and i know to use the system's command prompt. I don't know what libraries i have to install.

Thanks in advance. Best regards, Montse.

0
Avatar
Ignorer
Avatar
Yohanes Iwan Sugiarto
Meilleure réponse

Here's my experience installing OpenERP Server v6.1 on a Mac OS X 10.8.2, I'm pretty sure most steps will be quite similar.

You'll need to have MacPorts installed first www.macports.org/index.php (in a simple way, it's kind of apt-get replacement for Mac, correct me if I'm wrong about this)

Unfortunately it requires Xcode (you will need to download Xcode from the Apple developer website, register for free user first). Be aware that Xcode itself is quite big, I downloaded xcode4520418508a.dmg it was 1.7GB in size. Here's a good place to continue the Xcode & Macport installation process. guide.macports.org/chunked/installing.xcode.html

Next step: PostgreSQL 9.1 Download here: www.enterprisedb.com/products-services-training/pgdownload#osx

I had mine installed in:

/Library/PostgreSQL/9.1

Open 'Terminal' and type:

sudo -i
export PGHOME=/Library/PostgreSQL/9.1
echo 'export PATH=/Library/PostgreSQL/9.1/bin:$PATH' >> $PGHOME/.profile
exit

Next step: Create user account that OpenERP will use to connect to PostgreSQL (you can follow the same step in Linux installation guide)

Next: Install all OpenERP Python dependencies:

sudo -i
port install python27
port select python python27
port install py27-setuptools; easy_install setuptools
port install py27-psycopg2 +postgresql91; easy_install psycopg2
port install py27-reportlab; easy_install reportlab
port install py27-lxml; easy_install lxml
port install py27-tz; easy_install pytz
port install py27-yaml; easy_install PyYaml
port install py27-mako; easy_install mako
port install py27-dateutil; easy_install DateUtils
port install graphviz +python27 +no_x11
port install py27-parsing; easy_install pyparsing
port install py27-pil; easy_install pil

You may try download OpenERP 6.1 source, run and test if there are still dependencies unmet. Try to find the unmet dependencies package name and install it by running this command:

sudo port install <package_name>

All the other steps would be quite similar to Linux.

0
Avatar
Ignorer
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é
What is the better way to install V11 Odoo on MacOS ?
installation macosx
Avatar
Avatar
Avatar
Avatar
3
oct. 18
24458
Howto install openobject-server on OSX?
installation macosx
Avatar
Avatar
1
mars 15
7489
[Solved] Package for PyPDF2 is not available for MAC? Résolu
installation macosx odoo10
Avatar
Avatar
2
nov. 17
14295
How to run different OpenERP version on the same server? Résolu
v6.1 installation postgresql v7
Avatar
Avatar
Avatar
Avatar
Avatar
7
déc. 23
19106
눈Volaris Contacto Numero눈¿Cómo hablar con un asesor de Volaris?
v6.1
Avatar
0
oct. 25
9
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