Zmiany pomiędzy wersją 22 and wersją 23 dla DeployerGuide/Customization/OCRInvoice
- Data i czas:
- 01/31/20 12:41:30 (5 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Customization/OCRInvoice
v22 v23 60 60 61 61 62 Pakiety niezbędne do działania Bufora OCR 62 Pakiety niezbędne do działania Bufora OCR - Python 2 63 63 {{{ 64 64 apt-get install rabbitmq-server … … 72 72 apt-get install pdftk 73 73 }}} 74 75 Pakiety niezbędne do działania Bufora OCR - Python 2 76 77 {{{ 78 apt-get install rabbitmq-server 79 apt-get install python3-opencv 80 apt-get install python3-pip 81 pip3 install pika 82 apt install python3-pil 83 apt-get install supervisor 84 85 # pdftk 86 apt-get install pdftk 87 }}} 88 89 90 Zmiana domyślnej wersji 91 {{{ 92 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2 93 sudo update-alternatives --config python 94 }}} 95 96 Użycie wersji jako domyślnej 97 {{{ 98 sudo update-alternatives --set python /usr/bin/python3.6 99 }}} 100 101 102 74 103 75 104 … … 97 126 }}} 98 127 99 Zmiana wersji Python100 {{{101 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2102 sudo update-alternatives --config python103 }}}104 105 Użycie wersji jako domyślnej106 {{{107 sudo update-alternatives --set python /usr/bin/python3.6108 }}}