odoo
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| odoo [2017/10/12 12:39] – [Installer Odoo] simon | odoo [2026/08/22 13:57] (Version actuelle) – supprimée - modification externe (Date inconnue) 127.0.0.1 | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ====== Odoo ====== | ||
| - | [[https:// | ||
| - | ===== Installation ===== | ||
| - | Comme je compte développer pour Odoo, j'ai voulu mettre en place un [[chroot]] et compiler Odoo dedans. Pour avoir quelque chose de facilement sauvegardable et réplicable. | ||
| - | |||
| - | ==== chroot ==== | ||
| - | Les détails sur la configuration d'une Debian dans un [[chroot]] sont sur [[chroot|cette page]]. Voici un résumé : | ||
| - | <code bash> | ||
| - | # debootstrap --arch=amd64 --include=locales-all stretch chroot/ | ||
| - | </ | ||
| - | <code bash> | ||
| - | $ vim launch-debian-stretch.sh | ||
| - | </ | ||
| - | <code bash> | ||
| - | #!/bin/bash | ||
| - | |||
| - | cd / | ||
| - | sudo mount --bind /proc proc | ||
| - | sudo mount --bind /sys sys | ||
| - | sudo chroot . /bin/bash | ||
| - | sudo umount sys | ||
| - | sudo umount proc | ||
| - | </ | ||
| - | <code bash> | ||
| - | $ chmod +x launch-debian-stretch.sh | ||
| - | </ | ||
| - | |||
| - | Pour se connecter à l' | ||
| - | <code bash> | ||
| - | # ./ | ||
| - | </ | ||
| - | |||
| - | ==== Configuration avant d' | ||
| - | Une fois sur la Debian " | ||
| - | <code bash> | ||
| - | # apt install sudo | ||
| - | </ | ||
| - | |||
| - | Création d'un user " | ||
| - | <code bash> | ||
| - | # useradd -m -g sudo -s /bin/bash odoo | ||
| - | # passwd odoo | ||
| - | Entrez le nouveau mot de passe UNIX : | ||
| - | Retapez le nouveau mot de passe UNIX : | ||
| - | passwd: password updated successfully | ||
| - | </ | ||
| - | |||
| - | Connexion sur le compte " | ||
| - | <code bash> | ||
| - | root@laptop:/# | ||
| - | odoo@laptop:/ | ||
| - | odoo | ||
| - | odoo@laptop:/ | ||
| - | /home/odoo | ||
| - | </ | ||
| - | |||
| - | ==== Installer les prérequis à Odoo ==== | ||
| - | Donc, sur notre installation " | ||
| - | <code bash> | ||
| - | # apt install git curl | ||
| - | </ | ||
| - | |||
| - | Installation de NPM : | ||
| - | <code bash> | ||
| - | # curl -sL https:// | ||
| - | </ | ||
| - | < | ||
| - | <code bash> | ||
| - | ## Installing the NodeSource Node.js v8.x repo... | ||
| - | |||
| - | ## Populating apt-get cache... | ||
| - | |||
| - | + apt-get update | ||
| - | Ign:1 http:// | ||
| - | Atteint:2 http:// | ||
| - | Lecture des listes de paquets... Fait | ||
| - | |||
| - | ## Installing packages required for setup: apt-transport-https lsb-release... | ||
| - | |||
| - | + apt-get install -y apt-transport-https lsb-release > /dev/null 2>&1 | ||
| - | |||
| - | ## Confirming " | ||
| - | |||
| - | + curl -sLf -o /dev/null ' | ||
| - | |||
| - | ## Adding the NodeSource signing key to your keyring... | ||
| - | |||
| - | + curl -s https:// | ||
| - | OK | ||
| - | |||
| - | ## Creating apt sources list file for the NodeSource Node.js v8.x repo... | ||
| - | |||
| - | + echo 'deb https:// | ||
| - | + echo ' | ||
| - | |||
| - | ## Running `apt-get update` for you... | ||
| - | |||
| - | + apt-get update | ||
| - | Ign:1 http:// | ||
| - | Atteint:2 http:// | ||
| - | Réception de:4 https:// | ||
| - | Réception de:5 https:// | ||
| - | Réception de:6 https:// | ||
| - | 6.417 o réceptionnés en 0s (7.096 o/s) | ||
| - | Lecture des listes de paquets... Fait | ||
| - | |||
| - | ## Run `apt-get install nodejs` (as root) to install Node.js v8.x and npm | ||
| - | </ | ||
| - | </ | ||
| - | |||
| - | <code bash> | ||
| - | # apt install nodejs | ||
| - | </ | ||
| - | < | ||
| - | < | ||
| - | Lecture des listes de paquets... Fait | ||
| - | Construction de l' | ||
| - | Lecture des informations d' | ||
| - | The following additional packages will be installed: | ||
| - | libpython-stdlib libpython2.7-minimal libpython2.7-stdlib python | ||
| - | python-minimal python2.7 python2.7-minimal | ||
| - | Paquets suggérés : | ||
| - | python-doc python-tk python2.7-doc binutils binfmt-support | ||
| - | Les NOUVEAUX paquets suivants seront installés : | ||
| - | libpython-stdlib libpython2.7-minimal libpython2.7-stdlib nodejs | ||
| - | python python-minimal python2.7 python2.7-minimal | ||
| - | 0 mis à jour, 8 nouvellement installés, 0 à enlever et 0 non mis à jour. | ||
| - | Il est nécessaire de prendre 16,6 Mo dans les archives. | ||
| - | Après cette opération, 74,3 Mo d' | ||
| - | Souhaitez-vous continuer ? [O/n] | ||
| - | Réception de:1 http:// | ||
| - | Réception de:2 http:// | ||
| - | Réception de:3 https:// | ||
| - | Réception de:4 http:// | ||
| - | Réception de:5 http:// | ||
| - | Réception de:6 http:// | ||
| - | Réception de:7 http:// | ||
| - | Réception de:8 http:// | ||
| - | 16,6 Mo réceptionnés en 11s (1.488 ko/s) | ||
| - | E: Impossible d' | ||
| - | Sélection du paquet libpython2.7-minimal: | ||
| - | (Lecture de la base de données... 20634 fichiers et répertoires déjà installés.) | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de libpython2.7-minimal: | ||
| - | Sélection du paquet python2.7-minimal précédemment désélectionné. | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de python2.7-minimal (2.7.13-2) ... | ||
| - | Sélection du paquet python-minimal précédemment désélectionné. | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de python-minimal (2.7.13-2) ... | ||
| - | Sélection du paquet libpython2.7-stdlib: | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de libpython2.7-stdlib: | ||
| - | Sélection du paquet python2.7 précédemment désélectionné. | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de python2.7 (2.7.13-2) ... | ||
| - | Sélection du paquet libpython-stdlib: | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de libpython-stdlib: | ||
| - | Paramétrage de libpython2.7-minimal: | ||
| - | Paramétrage de python2.7-minimal (2.7.13-2) ... | ||
| - | Linking and byte-compiling packages for runtime python2.7... | ||
| - | Paramétrage de python-minimal (2.7.13-2) ... | ||
| - | Sélection du paquet python précédemment désélectionné. | ||
| - | (Lecture de la base de données... 21380 fichiers et répertoires déjà installés.) | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de python (2.7.13-2) ... | ||
| - | Sélection du paquet nodejs précédemment désélectionné. | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de nodejs (8.7.0-1nodesource1) ... | ||
| - | Traitement des actions différées (« triggers ») pour mime-support (3.60) ... | ||
| - | Paramétrage de nodejs (8.7.0-1nodesource1) ... | ||
| - | Paramétrage de libpython2.7-stdlib: | ||
| - | Paramétrage de python2.7 (2.7.13-2) ... | ||
| - | Paramétrage de libpython-stdlib: | ||
| - | Paramétrage de python (2.7.13-2) ... | ||
| - | </ | ||
| - | </ | ||
| - | |||
| - | Odoo a apparemment besoin de " | ||
| - | <code bash> | ||
| - | # npm install -g less less-plugin-clean-css | ||
| - | / | ||
| - | + less@3.0.0-alpha.3 | ||
| - | + less-plugin-clean-css@1.5.1 | ||
| - | added 17 packages in 8.182s | ||
| - | </ | ||
| - | |||
| - | ==== Installer Odoo 9 ==== | ||
| - | <code bash> | ||
| - | root@laptop:/# | ||
| - | odoo@laptop:/ | ||
| - | odoo@laptop: | ||
| - | odoo@laptop: | ||
| - | odoo@laptop: | ||
| - | </ | ||
| - | |||
| - | ==== Installer Odoo 10 ==== | ||
| - | <WRAP center round alert 60%> | ||
| - | Ce n'est pas la version utilisée pour le moment. | ||
| - | </ | ||
| - | |||
| - | |||
| - | <code bash> | ||
| - | root@laptop:/# | ||
| - | odoo@laptop:/ | ||
| - | odoo@laptop: | ||
| - | odoo@laptop: | ||
| - | odoo@laptop: | ||
| - | </ | ||
| - | < | ||
| - | odoo@laptop: | ||
| - | Clonage dans ' | ||
| - | remote: Counting objects: 23386, done. | ||
| - | remote: Compressing objects: 100% (18552/ | ||
| - | remote: Total 23386 (delta 7413), reused 11138 (delta 4087), pack-reused 0 | ||
| - | Réception d' | ||
| - | Résolution des deltas: 100% (7413/ | ||
| - | Extraction des fichiers: 100% (21207/ | ||
| - | </ | ||
| - | |||
| - | Il y a un script pour installer les dépendances d'odoo : | ||
| - | <code bash> | ||
| - | $ ./ | ||
| - | </ | ||
| - | |||
| - | Malheureusement, | ||
| - | <code bash> | ||
| - | $ sudo apt install python-pypdf2 | ||
| - | Lecture des listes de paquets... Fait | ||
| - | Construction de l' | ||
| - | Lecture des informations d' | ||
| - | Les NOUVEAUX paquets suivants seront installés : | ||
| - | python-pypdf2 | ||
| - | 0 mis à jour, 1 nouvellement installés, 0 à enlever et 0 non mis à jour. | ||
| - | Il est nécessaire de prendre 57,0 ko dans les archives. | ||
| - | Après cette opération, 271 ko d' | ||
| - | Réception de:1 http:// | ||
| - | 57,0 ko réceptionnés en 0s (199 ko/ | ||
| - | Sélection du paquet python-pypdf2 précédemment désélectionné. | ||
| - | (Lecture de la base de données... 25135 fichiers et répertoires déjà installés.) | ||
| - | Préparation du dépaquetage de .../ | ||
| - | Dépaquetage de python-pypdf2 (1.26.0-2) ... | ||
| - | Paramétrage de python-pypdf2 (1.26.0-2) ... | ||
| - | </ | ||
| - | |||
| - | Malheureusement, | ||
| - | <code bash> | ||
| - | $ sudo apt install python-pip | ||
| - | </ | ||
| - | < | ||
| - | <code bash> | ||
| - | Lecture des listes de paquets... Fait | ||
| - | Construction de l' | ||
| - | Lecture des informations d' | ||
| - | The following additional packages will be installed: | ||
| - | binutils build-essential cpp cpp-6 dbus dpkg-dev fakeroot g++ g++-6 gcc | ||
| - | gcc-6 gir1.2-glib-2.0 libalgorithm-diff-perl libalgorithm-diff-xs-perl | ||
| - | libalgorithm-merge-perl libasan3 libatomic1 libc-dev-bin libc6-dev libcc1-0 | ||
| - | libcilkrts5 libdbus-1-3 libdbus-glib-1-2 libdpkg-perl libexpat1-dev | ||
| - | libfakeroot libfile-fcntllock-perl libgcc-6-dev libgirepository-1.0-1 | ||
| - | libglib2.0-0 libglib2.0-data libgomp1 libicu57 libisl15 libitm1 liblsan0 | ||
| - | libmpc3 libmpfr4 libmpx2 libpython-all-dev libpython-dev libpython2.7 | ||
| - | libpython2.7-dev libquadmath0 libstdc++-6-dev libtsan0 libubsan0 libxml2 | ||
| - | linux-libc-dev make manpages manpages-dev python-all python-all-dev | ||
| - | python-cffi-backend python-crypto python-cryptography python-dbus python-dev | ||
| - | python-enum34 python-gi python-idna python-ipaddress python-keyring | ||
| - | python-keyrings.alt python-pip-whl python-pkg-resources python-pyasn1 | ||
| - | python-secretstorage python-setuptools python-six python-wheel python-xdg | ||
| - | python2.7-dev sgml-base shared-mime-info xdg-user-dirs xml-core | ||
| - | Paquets suggérés : | ||
| - | binutils-doc cpp-doc gcc-6-locales default-dbus-session-bus | ||
| - | | dbus-session-bus debian-keyring g++-multilib g++-6-multilib gcc-6-doc | ||
| - | libstdc++6-6-dbg gcc-multilib autoconf automake libtool flex bison gdb | ||
| - | gcc-doc gcc-6-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg | ||
| - | libasan3-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg | ||
| - | libmpx2-dbg libquadmath0-dbg glibc-doc libstdc++-6-doc make-doc man-browser | ||
| - | python-crypto-dbg python-crypto-doc python-cryptography-doc | ||
| - | python-cryptography-vectors python-dbus-dbg python-dbus-doc | ||
| - | python-enum34-doc python-gi-cairo gnome-keyring libkf5wallet-bin | ||
| - | gir1.2-gnomekeyring-1.0 python-fs python-gdata python-kde4 python-keyczar | ||
| - | doc-base python-secretstorage-doc python-setuptools-doc sgml-base-doc | ||
| - | debhelper | ||
| - | Les NOUVEAUX paquets suivants seront installés : | ||
| - | binutils build-essential cpp cpp-6 dbus dpkg-dev fakeroot g++ g++-6 gcc | ||
| - | gcc-6 gir1.2-glib-2.0 libalgorithm-diff-perl libalgorithm-diff-xs-perl | ||
| - | libalgorithm-merge-perl libasan3 libatomic1 libc-dev-bin libc6-dev libcc1-0 | ||
| - | libcilkrts5 libdbus-1-3 libdbus-glib-1-2 libdpkg-perl libexpat1-dev | ||
| - | libfakeroot libfile-fcntllock-perl libgcc-6-dev libgirepository-1.0-1 | ||
| - | libglib2.0-0 libglib2.0-data libgomp1 libicu57 libisl15 libitm1 liblsan0 | ||
| - | libmpc3 libmpfr4 libmpx2 libpython-all-dev libpython-dev libpython2.7 | ||
| - | libpython2.7-dev libquadmath0 libstdc++-6-dev libtsan0 libubsan0 libxml2 | ||
| - | linux-libc-dev make manpages manpages-dev python-all python-all-dev | ||
| - | python-cffi-backend python-crypto python-cryptography python-dbus python-dev | ||
| - | python-enum34 python-gi python-idna python-ipaddress python-keyring | ||
| - | python-keyrings.alt python-pip python-pip-whl python-pkg-resources | ||
| - | python-pyasn1 python-secretstorage python-setuptools python-six python-wheel | ||
| - | python-xdg python2.7-dev sgml-base shared-mime-info xdg-user-dirs xml-core | ||
| - | 0 mis à jour, 79 nouvellement installés, 0 à enlever et 0 non mis à jour. | ||
| - | Il est nécessaire de prendre 89,8 Mo dans les archives. | ||
| - | Après cette opération, 277 Mo d' | ||
| - | Souhaitez-vous continuer ? [O/n] | ||
| - | (...) | ||
| - | </ | ||
| - | </ | ||
| - | |||
| - | <code bash> | ||
| - | odoo@laptop: | ||
| - | pdftools (1.1.0) | ||
| - | manipulation, | ||
| - | pyjon.reports (0.6) - Pyjon.Reports is a module bridging z3c.rml, genshi and | ||
| - | pypdf together to provide a simple mean of creating | ||
| - | templated pdf documents in python. | ||
| - | pyPdf (1.13) | ||
| - | PyPDF2 (1.26.0) | ||
| - | INSTALLED: 1.26.0 (latest) | ||
| - | pypdf2table (0.2.2) | ||
| - | pypdf2xml (0.3) - A reimplementation of pdftoxml in Python, using | ||
| - | pdfMiner. Handles unicode characters better. | ||
| - | pyPdfFinder (0.2) - A pdf api created to easy find and write words at a | ||
| - | pdf file | ||
| - | pypdflib (0.1.a3) | ||
| - | PyPDFLite (0.1.40) | ||
| - | pypdfml (0.1.0alpha) | ||
| - | pypdfocr (0.9.1) | ||
| - | Tesseract-OCR and Ghostscript | ||
| - | pypdfparse (0.3.1) | ||
| - | pypdftk (0.3) - Python wrapper for PDFTK | ||
| - | </ | ||
| - | |||
| - | **pypdf** est disponible via [[pip]], on installe : | ||
| - | <code bash> | ||
| - | odoo@laptop: | ||
| - | Collecting pypdf | ||
| - | Downloading pyPdf-1.13.tar.gz | ||
| - | Building wheels for collected packages: pypdf | ||
| - | Running setup.py bdist_wheel for pypdf ... done | ||
| - | Stored in directory: / | ||
| - | Successfully built pypdf | ||
| - | Installing collected packages: pypdf | ||
| - | Successfully installed pypdf-1.13 | ||
| - | </ | ||
| - | |||
| - | Ça ne suffit toujours pas... J' | ||
| - | <code bash> | ||
| - | odoo@laptop: | ||
| - | </ | ||
| - | < | ||
| - | <code bash> | ||
| - | Collecting Babel==2.3.4 (from -r requirements.txt (line 1)) | ||
| - | Downloading Babel-2.3.4-py2.py3-none-any.whl (7.1MB) | ||
| - | 100% |████████████████████████████████| 7.1MB 107kB/ | ||
| - | Collecting decorator==4.0.10 (from -r requirements.txt (line 2)) | ||
| - | Downloading decorator-4.0.10-py2.py3-none-any.whl | ||
| - | Collecting docutils==0.12 (from -r requirements.txt (line 3)) | ||
| - | Downloading docutils-0.12.tar.gz (1.6MB) | ||
| - | 100% |████████████████████████████████| 1.6MB 395kB/ | ||
| - | Collecting ebaysdk==2.1.4 (from -r requirements.txt (line 4)) | ||
| - | Downloading ebaysdk-2.1.4.tar.gz (40kB) | ||
| - | 100% |████████████████████████████████| 51kB 1.4MB/ | ||
| - | Collecting feedparser==5.2.1 (from -r requirements.txt (line 5)) | ||
| - | Downloading feedparser-5.2.1.zip (1.2MB) | ||
| - | 100% |████████████████████████████████| 1.2MB 676kB/ | ||
| - | Collecting gevent==1.1.2 (from -r requirements.txt (line 6)) | ||
| - | Downloading gevent-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl (1.3MB) | ||
| - | 100% |████████████████████████████████| 1.3MB 465kB/ | ||
| - | Collecting greenlet==0.4.10 (from -r requirements.txt (line 7)) | ||
| - | Downloading greenlet-0.4.10-cp27-cp27mu-manylinux1_x86_64.whl (41kB) | ||
| - | 100% |████████████████████████████████| 51kB 1.6MB/ | ||
| - | Collecting jcconv==0.2.3 (from -r requirements.txt (line 8)) | ||
| - | Downloading jcconv-0.2.3.tar.gz | ||
| - | Collecting Jinja2==2.8 (from -r requirements.txt (line 9)) | ||
| - | Downloading Jinja2-2.8-py2.py3-none-any.whl (263kB) | ||
| - | 100% |████████████████████████████████| 266kB 1.5MB/ | ||
| - | Collecting lxml==3.5.0 (from -r requirements.txt (line 10)) | ||
| - | Downloading lxml-3.5.0.tar.gz (3.8MB) | ||
| - | 100% |████████████████████████████████| 3.8MB 198kB/ | ||
| - | Collecting Mako==1.0.4 (from -r requirements.txt (line 11)) | ||
| - | Downloading Mako-1.0.4.tar.gz (574kB) | ||
| - | 100% |████████████████████████████████| 583kB 872kB/ | ||
| - | Collecting MarkupSafe==0.23 (from -r requirements.txt (line 12)) | ||
| - | Downloading MarkupSafe-0.23.tar.gz | ||
| - | Collecting mock==2.0.0 (from -r requirements.txt (line 13)) | ||
| - | Downloading mock-2.0.0-py2.py3-none-any.whl (56kB) | ||
| - | 100% |████████████████████████████████| 61kB 1.5MB/ | ||
| - | Collecting ofxparse==0.16 (from -r requirements.txt (line 14)) | ||
| - | Downloading ofxparse-0.16.tar.gz (49kB) | ||
| - | 100% |████████████████████████████████| 51kB 2.1MB/ | ||
| - | Collecting passlib==1.6.5 (from -r requirements.txt (line 15)) | ||
| - | Downloading passlib-1.6.5-py2.py3-none-any.whl (317kB) | ||
| - | 100% |████████████████████████████████| 327kB 1.2MB/ | ||
| - | Collecting Pillow==3.4.1 (from -r requirements.txt (line 16)) | ||
| - | Downloading Pillow-3.4.1-cp27-cp27mu-manylinux1_x86_64.whl (5.6MB) | ||
| - | 100% |████████████████████████████████| 5.6MB 139kB/ | ||
| - | Collecting psutil==4.3.1 (from -r requirements.txt (line 17)) | ||
| - | Downloading psutil-4.3.1.tar.gz (315kB) | ||
| - | 100% |████████████████████████████████| 317kB 1.2MB/ | ||
| - | Collecting psycogreen==1.0 (from -r requirements.txt (line 18)) | ||
| - | Downloading psycogreen-1.0.tar.gz | ||
| - | Collecting psycopg2==2.7.1 (from -r requirements.txt (line 19)) | ||
| - | Downloading psycopg2-2.7.1-cp27-cp27mu-manylinux1_x86_64.whl (2.7MB) | ||
| - | 100% |████████████████████████████████| 2.7MB 275kB/ | ||
| - | Collecting pydot==1.2.3 (from -r requirements.txt (line 20)) | ||
| - | Downloading pydot-1.2.3.tar.gz | ||
| - | Collecting pyparsing==2.1.10 (from -r requirements.txt (line 21)) | ||
| - | Downloading pyparsing-2.1.10-py2.py3-none-any.whl (56kB) | ||
| - | 100% |████████████████████████████████| 61kB 1.2MB/ | ||
| - | Requirement already up-to-date: pyPdf==1.13 in / | ||
| - | Collecting pyserial==3.1.1 (from -r requirements.txt (line 23)) | ||
| - | Downloading pyserial-3.1.1-py2.py3-none-any.whl (200kB) | ||
| - | 100% |████████████████████████████████| 204kB 1.3MB/ | ||
| - | Collecting Python-Chart==1.39 (from -r requirements.txt (line 24)) | ||
| - | Downloading Python-Chart-1.39.tar.gz (76kB) | ||
| - | 100% |████████████████████████████████| 81kB 1.8MB/ | ||
| - | Collecting python-dateutil==2.5.3 (from -r requirements.txt (line 25)) | ||
| - | Downloading python_dateutil-2.5.3-py2.py3-none-any.whl (201kB) | ||
| - | 100% |████████████████████████████████| 204kB 1.5MB/ | ||
| - | Collecting python-ldap==2.4.27 (from -r requirements.txt (line 26)) | ||
| - | Downloading python-ldap-2.4.27.tar.gz (125kB) | ||
| - | 100% |████████████████████████████████| 133kB 1.5MB/ | ||
| - | Collecting python-openid==2.2.5 (from -r requirements.txt (line 27)) | ||
| - | Downloading python-openid-2.2.5.tar.gz (301kB) | ||
| - | 100% |████████████████████████████████| 307kB 1.2MB/ | ||
| - | Collecting pytz==2016.7 (from -r requirements.txt (line 28)) | ||
| - | Downloading pytz-2016.7-py2.py3-none-any.whl (480kB) | ||
| - | 100% |████████████████████████████████| 481kB 973kB/ | ||
| - | Collecting pyusb==1.0.0 (from -r requirements.txt (line 29)) | ||
| - | Downloading PyUSB-1.0.0.tar.gz (52kB) | ||
| - | 100% |████████████████████████████████| 61kB 2.2MB/ | ||
| - | Collecting PyYAML==3.12 (from -r requirements.txt (line 30)) | ||
| - | Downloading PyYAML-3.12.tar.gz (253kB) | ||
| - | 100% |████████████████████████████████| 256kB 1.3MB/ | ||
| - | Collecting qrcode==5.3 (from -r requirements.txt (line 31)) | ||
| - | Downloading qrcode-5.3-py2.py3-none-any.whl | ||
| - | Collecting reportlab==3.3.0 (from -r requirements.txt (line 32)) | ||
| - | Downloading reportlab-3.3.0.tar.gz (2.0MB) | ||
| - | 100% |████████████████████████████████| 2.0MB 372kB/ | ||
| - | Collecting requests==2.11.1 (from -r requirements.txt (line 33)) | ||
| - | Downloading requests-2.11.1-py2.py3-none-any.whl (514kB) | ||
| - | 100% |████████████████████████████████| 522kB 856kB/ | ||
| - | Requirement already up-to-date: six==1.10.0 in / | ||
| - | Collecting suds-jurko==0.6 (from -r requirements.txt (line 35)) | ||
| - | Downloading suds-jurko-0.6.tar.bz2 (143kB) | ||
| - | 100% |████████████████████████████████| 153kB 1.5MB/ | ||
| - | Collecting vatnumber==1.2 (from -r requirements.txt (line 36)) | ||
| - | Downloading vatnumber-1.2.tar.gz | ||
| - | Collecting vobject==0.9.3 (from -r requirements.txt (line 37)) | ||
| - | Downloading vobject-0.9.3.tar.gz (51kB) | ||
| - | 100% |████████████████████████████████| 51kB 2.2MB/ | ||
| - | Collecting Werkzeug==0.11.11 (from -r requirements.txt (line 38)) | ||
| - | Downloading Werkzeug-0.11.11-py2.py3-none-any.whl (306kB) | ||
| - | 100% |████████████████████████████████| 307kB 1.1MB/ | ||
| - | Requirement already up-to-date: wsgiref==0.1.2 in / | ||
| - | Collecting XlsxWriter==0.9.3 (from -r requirements.txt (line 40)) | ||
| - | Downloading XlsxWriter-0.9.3-py2.py3-none-any.whl (136kB) | ||
| - | 100% |████████████████████████████████| 143kB 1.5MB/ | ||
| - | Collecting xlwt==1.1.2 (from -r requirements.txt (line 41)) | ||
| - | Downloading xlwt-1.1.2-py2.py3-none-any.whl (99kB) | ||
| - | 100% |████████████████████████████████| 102kB 1.9MB/ | ||
| - | Collecting xlrd==1.0.0 (from -r requirements.txt (line 42)) | ||
| - | Downloading xlrd-1.0.0.tar.gz (2.6MB) | ||
| - | 100% |████████████████████████████████| 2.6MB 218kB/ | ||
| - | Collecting funcsigs> | ||
| - | Downloading funcsigs-1.0.2-py2.py3-none-any.whl | ||
| - | Collecting pbr> | ||
| - | Downloading pbr-3.1.1-py2.py3-none-any.whl (99kB) | ||
| - | 100% |████████████████████████████████| 102kB 1.6MB/ | ||
| - | Collecting beautifulsoup4 (from ofxparse==0.16-> | ||
| - | Downloading beautifulsoup4-4.6.0-py2-none-any.whl (86kB) | ||
| - | 100% |████████████████████████████████| 92kB 2.1MB/ | ||
| - | Collecting setuptools (from python-ldap==2.4.27-> | ||
| - | Downloading setuptools-36.5.0-py2.py3-none-any.whl (478kB) | ||
| - | 100% |████████████████████████████████| 481kB 953kB/ | ||
| - | Requirement already up-to-date: pip> | ||
| - | Collecting python-stdnum (from vatnumber==1.2-> | ||
| - | Downloading python-stdnum-1.7.tar.gz (411kB) | ||
| - | 100% |████████████████████████████████| 419kB 1.1MB/ | ||
| - | Building wheels for collected packages: docutils, ebaysdk, feedparser, jcconv, lxml, Mako, MarkupSafe, ofxparse, psutil, psycogreen, pydot, Python-Chart, | ||
| - | Running setup.py bdist_wheel for docutils ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for ebaysdk ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for feedparser ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for jcconv ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for lxml ... error | ||
| - | Complete output from command / | ||
| - | Building lxml version 3.5.0. | ||
| - | Building without Cython. | ||
| - | ERROR: /bin/sh: 1: xslt-config: | ||
| - | | ||
| - | ** make sure the development packages of libxml2 and libxslt are installed ** | ||
| - | | ||
| - | Using build configuration of libxslt | ||
| - | running bdist_wheel | ||
| - | running build | ||
| - | running build_py | ||
| - | creating build | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | running build_ext | ||
| - | building ' | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/ | ||
| - | In file included from src/ | ||
| - | src/ | ||
| - | # | ||
| - | ^ | ||
| - | compilation terminated. | ||
| - | Compile failed: command ' | ||
| - | creating tmp | ||
| - | cc -I/ | ||
| - | / | ||
| - | # | ||
| - | ^ | ||
| - | compilation terminated. | ||
| - | ********************************************************************************* | ||
| - | Could not find function xmlCheckVersion in library libxml2. Is libxml2 installed? | ||
| - | ********************************************************************************* | ||
| - | error: command ' | ||
| - | | ||
| - | ---------------------------------------- | ||
| - | Failed building wheel for lxml | ||
| - | Running setup.py clean for lxml | ||
| - | Running setup.py bdist_wheel for Mako ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for MarkupSafe ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for ofxparse ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for psutil ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for psycogreen ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for pydot ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for Python-Chart ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for python-ldap ... error | ||
| - | Complete output from command / | ||
| - | defines: HAVE_SASL HAVE_TLS HAVE_LIBLDAP_R | ||
| - | extra_compile_args: | ||
| - | extra_objects: | ||
| - | include_dirs: | ||
| - | library_dirs: | ||
| - | libs: ldap_r | ||
| - | running bdist_wheel | ||
| - | running build | ||
| - | running build_py | ||
| - | file Lib/ldap.py (for module ldap) not found | ||
| - | file Lib/ | ||
| - | file Lib/ | ||
| - | file Lib/ | ||
| - | creating build | ||
| - | creating build/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ldif.py -> build/ | ||
| - | copying Lib/dsml.py -> build/ | ||
| - | creating build/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | creating build/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | creating build/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | creating build/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | copying Lib/ | ||
| - | file Lib/ldap.py (for module ldap) not found | ||
| - | file Lib/ | ||
| - | file Lib/ | ||
| - | file Lib/ | ||
| - | running egg_info | ||
| - | writing requirements to Lib/ | ||
| - | writing Lib/ | ||
| - | writing top-level names to Lib/ | ||
| - | writing dependency_links to Lib/ | ||
| - | file Lib/ldap.py (for module ldap) not found | ||
| - | file Lib/ | ||
| - | file Lib/ | ||
| - | file Lib/ | ||
| - | reading manifest file ' | ||
| - | reading manifest template ' | ||
| - | warning: no files found matching ' | ||
| - | warning: no files found matching ' | ||
| - | writing manifest file ' | ||
| - | running build_ext | ||
| - | building ' | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/ | ||
| - | In file included from Modules/ | ||
| - | Modules/ | ||
| - | # | ||
| - | ^ | ||
| - | compilation terminated. | ||
| - | error: command ' | ||
| - | | ||
| - | ---------------------------------------- | ||
| - | Failed building wheel for python-ldap | ||
| - | Running setup.py clean for python-ldap | ||
| - | Running setup.py bdist_wheel for python-openid ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for pyusb ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for PyYAML ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for reportlab ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for suds-jurko ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for vatnumber ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for vobject ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for xlrd ... done | ||
| - | Stored in directory: / | ||
| - | Running setup.py bdist_wheel for python-stdnum ... done | ||
| - | Stored in directory: / | ||
| - | Successfully built docutils ebaysdk feedparser jcconv Mako MarkupSafe ofxparse psutil psycogreen pydot Python-Chart python-openid pyusb PyYAML reportlab suds-jurko vatnumber vobject xlrd python-stdnum | ||
| - | Failed to build lxml python-ldap | ||
| - | Installing collected packages: pytz, Babel, decorator, docutils, lxml, requests, ebaysdk, feedparser, greenlet, gevent, jcconv, MarkupSafe, Jinja2, Mako, funcsigs, pbr, mock, beautifulsoup4, | ||
| - | Running setup.py install for lxml ... error | ||
| - | Complete output from command / | ||
| - | Building lxml version 3.5.0. | ||
| - | Building without Cython. | ||
| - | ERROR: /bin/sh: 1: xslt-config: | ||
| - | | ||
| - | ** make sure the development packages of libxml2 and libxslt are installed ** | ||
| - | | ||
| - | Using build configuration of libxslt | ||
| - | running install | ||
| - | running build | ||
| - | running build_py | ||
| - | creating build | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | running build_ext | ||
| - | building ' | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/ | ||
| - | In file included from src/ | ||
| - | src/ | ||
| - | # | ||
| - | ^ | ||
| - | compilation terminated. | ||
| - | Compile failed: command ' | ||
| - | cc -I/ | ||
| - | / | ||
| - | # | ||
| - | ^ | ||
| - | compilation terminated. | ||
| - | ********************************************************************************* | ||
| - | Could not find function xmlCheckVersion in library libxml2. Is libxml2 installed? | ||
| - | ********************************************************************************* | ||
| - | error: command ' | ||
| - | | ||
| - | ---------------------------------------- | ||
| - | Command "/ | ||
| - | </ | ||
| - | </ | ||
| - | |||
| - | Ça installe plein de choses mais il me manques des dépendances. Elles sont listées sur le site [[https:// | ||
| - | <code bash> | ||
| - | $ sudo apt-get install libxml2-dev | ||
| - | $ sudo apt-get install libxslt-dev | ||
| - | $ sudo apt-get install libevent-2.0.5 libevent-dev | ||
| - | $ sudo apt-get install libsasl2-2 libsasl2-dev | ||
| - | $ sudo apt-get install libldap-2.4.2 libldap2-dev | ||
| - | $ sudo apt-get install zlib1g zlib1g-dev | ||
| - | $ sudo apt-get install postgresql | ||
| - | </ | ||
| - | |||
| - | Mais ça ne me permet toujours pas d' | ||
| - | <code bash> | ||
| - | odoo@laptop: | ||
| - | </ | ||
| - | < | ||
| - | <code bash> | ||
| - | Requirement already up-to-date: Babel==2.3.4 in / | ||
| - | Requirement already up-to-date: decorator==4.0.10 in / | ||
| - | Requirement already up-to-date: docutils==0.12 in / | ||
| - | Collecting ebaysdk==2.1.4 (from -r requirements.txt (line 4)) | ||
| - | Collecting feedparser==5.2.1 (from -r requirements.txt (line 5)) | ||
| - | Collecting gevent==1.1.2 (from -r requirements.txt (line 6)) | ||
| - | Using cached gevent-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl | ||
| - | Collecting greenlet==0.4.10 (from -r requirements.txt (line 7)) | ||
| - | Using cached greenlet-0.4.10-cp27-cp27mu-manylinux1_x86_64.whl | ||
| - | Collecting jcconv==0.2.3 (from -r requirements.txt (line 8)) | ||
| - | Collecting Jinja2==2.8 (from -r requirements.txt (line 9)) | ||
| - | Using cached Jinja2-2.8-py2.py3-none-any.whl | ||
| - | Collecting lxml==3.5.0 (from -r requirements.txt (line 10)) | ||
| - | Using cached lxml-3.5.0.tar.gz | ||
| - | Collecting Mako==1.0.4 (from -r requirements.txt (line 11)) | ||
| - | Collecting MarkupSafe==0.23 (from -r requirements.txt (line 12)) | ||
| - | Collecting mock==2.0.0 (from -r requirements.txt (line 13)) | ||
| - | Using cached mock-2.0.0-py2.py3-none-any.whl | ||
| - | Collecting ofxparse==0.16 (from -r requirements.txt (line 14)) | ||
| - | Collecting passlib==1.6.5 (from -r requirements.txt (line 15)) | ||
| - | Using cached passlib-1.6.5-py2.py3-none-any.whl | ||
| - | Collecting Pillow==3.4.1 (from -r requirements.txt (line 16)) | ||
| - | Using cached Pillow-3.4.1-cp27-cp27mu-manylinux1_x86_64.whl | ||
| - | Collecting psutil==4.3.1 (from -r requirements.txt (line 17)) | ||
| - | Collecting psycogreen==1.0 (from -r requirements.txt (line 18)) | ||
| - | Collecting psycopg2==2.7.1 (from -r requirements.txt (line 19)) | ||
| - | Using cached psycopg2-2.7.1-cp27-cp27mu-manylinux1_x86_64.whl | ||
| - | Collecting pydot==1.2.3 (from -r requirements.txt (line 20)) | ||
| - | Collecting pyparsing==2.1.10 (from -r requirements.txt (line 21)) | ||
| - | Using cached pyparsing-2.1.10-py2.py3-none-any.whl | ||
| - | Requirement already up-to-date: pyPdf==1.13 in / | ||
| - | Collecting pyserial==3.1.1 (from -r requirements.txt (line 23)) | ||
| - | Using cached pyserial-3.1.1-py2.py3-none-any.whl | ||
| - | Collecting Python-Chart==1.39 (from -r requirements.txt (line 24)) | ||
| - | Collecting python-dateutil==2.5.3 (from -r requirements.txt (line 25)) | ||
| - | Using cached python_dateutil-2.5.3-py2.py3-none-any.whl | ||
| - | Collecting python-ldap==2.4.27 (from -r requirements.txt (line 26)) | ||
| - | Collecting python-openid==2.2.5 (from -r requirements.txt (line 27)) | ||
| - | Requirement already up-to-date: pytz==2016.7 in / | ||
| - | Collecting pyusb==1.0.0 (from -r requirements.txt (line 29)) | ||
| - | Collecting PyYAML==3.12 (from -r requirements.txt (line 30)) | ||
| - | Collecting qrcode==5.3 (from -r requirements.txt (line 31)) | ||
| - | Using cached qrcode-5.3-py2.py3-none-any.whl | ||
| - | Collecting reportlab==3.3.0 (from -r requirements.txt (line 32)) | ||
| - | Requirement already up-to-date: requests==2.11.1 in / | ||
| - | Requirement already up-to-date: six==1.10.0 in / | ||
| - | Collecting suds-jurko==0.6 (from -r requirements.txt (line 35)) | ||
| - | Collecting vatnumber==1.2 (from -r requirements.txt (line 36)) | ||
| - | Collecting vobject==0.9.3 (from -r requirements.txt (line 37)) | ||
| - | Collecting Werkzeug==0.11.11 (from -r requirements.txt (line 38)) | ||
| - | Using cached Werkzeug-0.11.11-py2.py3-none-any.whl | ||
| - | Requirement already up-to-date: wsgiref==0.1.2 in / | ||
| - | Collecting XlsxWriter==0.9.3 (from -r requirements.txt (line 40)) | ||
| - | Using cached XlsxWriter-0.9.3-py2.py3-none-any.whl | ||
| - | Collecting xlwt==1.1.2 (from -r requirements.txt (line 41)) | ||
| - | Using cached xlwt-1.1.2-py2.py3-none-any.whl | ||
| - | Collecting xlrd==1.0.0 (from -r requirements.txt (line 42)) | ||
| - | Collecting funcsigs> | ||
| - | Using cached funcsigs-1.0.2-py2.py3-none-any.whl | ||
| - | Collecting pbr> | ||
| - | Using cached pbr-3.1.1-py2.py3-none-any.whl | ||
| - | Collecting beautifulsoup4 (from ofxparse==0.16-> | ||
| - | Using cached beautifulsoup4-4.6.0-py2-none-any.whl | ||
| - | Collecting setuptools (from python-ldap==2.4.27-> | ||
| - | Downloading setuptools-36.6.0-py2.py3-none-any.whl (481kB) | ||
| - | 100% |████████████████████████████████| 481kB 530kB/ | ||
| - | Requirement already up-to-date: pip> | ||
| - | Collecting python-stdnum (from vatnumber==1.2-> | ||
| - | Building wheels for collected packages: lxml | ||
| - | Running setup.py bdist_wheel for lxml ... error | ||
| - | Complete output from command / | ||
| - | Building lxml version 3.5.0. | ||
| - | Building without Cython. | ||
| - | Using build configuration of libxslt 1.1.29 | ||
| - | running bdist_wheel | ||
| - | running build | ||
| - | running build_py | ||
| - | creating build | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | running build_ext | ||
| - | building ' | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/ | ||
| - | x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl, | ||
| - | / | ||
| - | collect2: error: ld returned 1 exit status | ||
| - | error: command ' | ||
| - | | ||
| - | ---------------------------------------- | ||
| - | Failed building wheel for lxml | ||
| - | Running setup.py clean for lxml | ||
| - | Failed to build lxml | ||
| - | Installing collected packages: lxml, ebaysdk, feedparser, greenlet, gevent, jcconv, MarkupSafe, Jinja2, Mako, funcsigs, pbr, mock, beautifulsoup4, | ||
| - | Running setup.py install for lxml ... error | ||
| - | Complete output from command / | ||
| - | Building lxml version 3.5.0. | ||
| - | Building without Cython. | ||
| - | Using build configuration of libxslt 1.1.29 | ||
| - | running install | ||
| - | running build | ||
| - | running build_py | ||
| - | creating build | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | creating build/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | copying src/ | ||
| - | running build_ext | ||
| - | building ' | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | creating build/ | ||
| - | x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/ | ||
| - | x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl, | ||
| - | / | ||
| - | collect2: error: ld returned 1 exit status | ||
| - | error: command ' | ||
| - | | ||
| - | ---------------------------------------- | ||
| - | Command "/ | ||
| - | </ | ||
| - | </ | ||
odoo.1507811990.txt.gz · Dernière modification : (modification externe)
