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 checkout/branch bazaar banches of OpenERP ?

S'inscrire

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

Cette question a été signalée
addonsv7
3 Réponses
9764 Vues
Avatar
xiaolong97427

I am trying to install OpenERP V7.0 from launchPad. I did the :

sudo bzr branch lp:openobject-server/7.0 server
sudo bzr branch lp:openobject-addons/7.0 addons
sudo bzr branch lp:openerp-web/7.0 web

but folder addons is empty. Is it normal ? I also try openobject-server/trunk. Same result.

2
Avatar
Ignorer
Jānis

have you installed bzr? do you use three different commands separately? : sudo bzr branch lp:openobject-server/7.0 server etc.

Yannick Payot

No its not normal, the folder addons has a size of 850 Mo

xiaolong97427
Auteur

Thx Vaucher

Indeed it seems that it doesn't download all.... but how come ?

What does the command line : bzr checkout lp:openobject-addons/7.0 --lightweight addons ?

Yannick Payot

I added a link in my answer, using checkout instead of branch is another way to use the revisioning system. Branch is in pull / push mode and checkout is in update / commit mode.

The option --lightweight, only usable with checkout mode, won't download the whole history.

Yannick Payot

Don't you get any error message during the download?

xiaolong97427
Auteur

The --lightweight mode works fine. I was able to download the addons. Thanks again. But as you mentionned, I didn't get any error message on the screen. While downloading I don't have the hand on the "prompt", but then suddently I got i back, but the folder addons is empty. Swap mem looks fine also

Yashodhan Kulkarni

Doing bzr co lp:~openerp/openobject-addons/trunk --lightweight addons for all repositories will help you get files downloaded quickly and successfully.

Avatar
Yannick Payot
Meilleure réponse

Maybe your download failed. It's quite long to get it.

You could try getting the addons branch with

bzr checkout lp:openobject-addons/7.0 --lightweight addons

--lightweight option specifies that you don't download the whole history This makes a download of a 200Mo branch instead of the complete 850Mo branch.

As the addons branch is quite big and active, the history itself, you got it, has a size of 650Mo.

By the way you shouldn't need to use sudo for bzr.

doc: Getting a lightweight checkout

2
Avatar
Ignorer
Avatar
xiaolong97427
Auteur Meilleure réponse

Thx for answering;

Indeed it seems that it doesn't download all.... but how come ?

What does the command line : bzr checkout lp:openobject-addons/7.0 --lightweight addons ?

1
Avatar
Ignorer
Daniel Reis

Please note that comments should not be posted as "Answers".

Avatar
Yashodhan Kulkarni
Meilleure réponse

I was having all Addons inside my openobject-addons directory.

Then I did rm -fr /srv/openerp/openobject-addons

But Now when I'm trying

bzr branch lp:openobject-addons /srv/openerp/openobject-addons directory is Blank/Empty with only .bzr directory

I'm totally frustrated but not able to get any file/directory as it used to be earlier under my addons directory using bzr.

Please Help!

0
Avatar
Ignorer
Yashodhan Kulkarni

OK, I managed to get it work by removing addons folder first then by entering following command to featch all files into addons directory. bzr co lp:~openerp/openobject-addons/trunk --lightweight addons

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é
widget="mail_thread"
mail addons v7
Avatar
0
mars 15
6382
How to make a module from v6 fit with v7?
addons v7 v6
Avatar
Avatar
Avatar
2
mars 15
6064
Where is local modules in windows ?
windows addons v7
Avatar
Avatar
1
mars 15
6900
Why would the addons_path not be picked up?
addons v7 solved
Avatar
Avatar
2
mars 15
7412
Odoo isn't seeing an add-on that I downloaded and placed in the addons folder Résolu
addons
Avatar
Avatar
Avatar
Avatar
Avatar
5
oct. 25
2339
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