Zmiany pomiędzy wersją 22 and wersją 23 dla DeployerGuide/Customization/OCRInvoice

Pokaż
Ignoruj:
Data i czas:
01/31/20 12:41:30 (4 years temu)
Autor:
jpo (IP: 83.144.106.170)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Customization/OCRInvoice

    v22 v23  
    6060 
    6161 
    62 Pakiety niezbędne do działania Bufora OCR 
     62Pakiety niezbędne do działania Bufora OCR - Python 2 
    6363{{{ 
    6464apt-get install rabbitmq-server 
     
    7272apt-get install pdftk 
    7373}}} 
     74 
     75Pakiety niezbędne do działania Bufora OCR - Python 2 
     76 
     77{{{ 
     78apt-get install rabbitmq-server 
     79apt-get install python3-opencv 
     80apt-get install python3-pip 
     81pip3 install pika 
     82apt install python3-pil 
     83apt-get install supervisor 
     84 
     85# pdftk 
     86apt-get install pdftk 
     87}}} 
     88 
     89 
     90Zmiana domyślnej wersji  
     91{{{ 
     92sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2 
     93sudo update-alternatives --config python 
     94}}} 
     95 
     96Użycie wersji jako domyślnej 
     97{{{ 
     98sudo update-alternatives  --set python /usr/bin/python3.6 
     99}}} 
     100 
     101 
     102 
    74103 
    75104 
     
    97126}}} 
    98127 
    99 Zmiana wersji Python 
    100 {{{ 
    101 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2 
    102 sudo update-alternatives --config python 
    103 }}} 
    104  
    105 Użycie wersji jako domyślnej 
    106 {{{ 
    107 sudo update-alternatives  --set python /usr/bin/python3.6 
    108 }}}