Christopher Juckins

SysAdmin Tips, Tricks and other Software Tools

User Tools

Site Tools


python_notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
python_notes [2022/06/22 09:48] juckinspython_notes [2023/01/25 10:27] juckins
Line 1: Line 1:
 ==== Python Install Notes ==== ==== Python Install Notes ====
 +__11 Jan 2023__
 +
 +  # python3 -m pip list --outdated
 +  Package             Version         Latest          Type
 +  ------------------- --------------- --------------- -----
 +  certifi             2022.9.24       2022.12.7       wheel
 +  chromedriver-binary 108.0.5359.22.0 109.0.5414.74.0 sdist
 +  dictor              0.1.10          0.1.11          sdist
 +  pdf2image           1.16.0          1.16.2          wheel
 +  pytesseract         0.3.8           0.3.9           wheel
 +  pytz                2022.6          2022.7          wheel
 +
 +Upgraded all of the above except for pytesseract.  Then:
 +
 +  # find /usr -name "chromedriver" -exec ls -l {} \;
 +  # chmod 755 /usr/local/lib/python3.6/site-packages/chromedriver_binary/chromedriver
 +
 +
 +__30 Nov 2022__
 +
 +Upgraded several python packages on physical and virtual servers.
 +
 +__26 Oct 2022__
 +
 +Upgraded several python packages on physical server.
 +
 +
 +Current list of python modules:
 +  
 +  [root@tidewater: ~]# python3 -m pip list
 +  Package             Version
 +  ------------------- ---------------
 +  astral              3.0
 +  backports.zoneinfo  0.2.1
 +  black               22.8.0
 +  certifi             2022.9.24
 +  chardet             5.0.0
 +  charset-normalizer  3.0.0
 +  chromedriver        2.24.1
 +  chromedriver-binary 107.0.5304.62.0
 +  click               8.0.4
 +  dataclasses         0.8
 +  dictor              0.1.10
 +  idna                3.4
 +  importlib-metadata  4.8.3
 +  importlib-resources 5.4.0
 +  mypy-extensions     0.4.3
 +  numpy               1.19.5
 +  pathspec            0.9.0
 +  pdf2image           1.16.0
 +  Pillow              8.4.0
 +  pip                 21.3.1
 +  platformdirs        2.4.0
 +  PyMySQL             1.0.2
 +  pytesseract         0.3.8
 +  pytz                2022.5
 +  requests            2.27.1
 +  selenium            3.141.0
 +  setuptools          59.6.0
 +  tomli               1.2.3
 +  typed-ast           1.5.4
 +  typing_extensions   4.1.1
 +  urllib3             1.26.12
 +  vboxapi             1.0
 +  wget                3.2
 +  zipp                3.6.0
 +
 +
 +__30 Sep 2022__
 +
 +Current list of python modules:
 +
 +  [root@tidewater: ~]# python3 -m pip list
 +  Package             Version
 +  ------------------- ---------------
 +  astral              2.2
 +  black               22.8.0
 +  certifi             2022.9.14
 +  chardet             5.0.0
 +  charset-normalizer  2.1.1
 +  chromedriver        2.24.1
 +  chromedriver-binary 105.0.5195.52.0
 +  click               8.0.4
 +  dataclasses         0.8
 +  dictor              0.1.10
 +  idna                3.4
 +  importlib-metadata  4.8.3
 +  mypy-extensions     0.4.3
 +  numpy               1.19.5
 +  pathspec            0.9.0
 +  pdf2image           1.16.0
 +  Pillow              8.4.0
 +  pip                 21.3.1
 +  platformdirs        2.4.0
 +  PyMySQL             1.0.2
 +  pytesseract         0.3.8
 +  pytz                2022.2.1
 +  requests            2.27.1
 +  selenium            3.141.0
 +  setuptools          59.6.0
 +  tomli               1.2.3
 +  typed-ast           1.5.4
 +  typing_extensions   4.1.1
 +  urllib3             1.26.12
 +  vboxapi             1.0
 +  wget                3.2
 +  zipp                3.6.0
 +
 +__22 Sep 2022__
 +
 +Upgraded several python packages on both physical and virtual servers.
 +
 +__2 Aug 2022__
 +
 +Upgraded several python packages on both physical and virtual servers.
 +
 __22 June 2022__ __22 June 2022__
  
-Upgraded several python packages on both __physical__ and __virtual__ servers.+Upgraded several python packages on both physical and virtual servers.
  
 __26 May 2022__ __26 May 2022__
  
-Upgraded several python packages on both __physical__ and __virtual__ servers.+Upgraded several python packages on both physical and virtual servers.
  
 __27 Apr 2022__ __27 Apr 2022__
  
-Upgraded several python packages on both __physical__ and __virtual__ servers.+Upgraded several python packages on both physical and virtual servers.
  
 __30 Mar 2022__ __30 Mar 2022__
  
-Upgraded several python packages on both __physical__ and __virtual__ servers.+Upgraded several python packages on both physical and virtual servers.
  
 __3 Mar 2022__ __3 Mar 2022__
Line 313: Line 429:
   # /usr/bin/python3 -m pip install chromedriver-binary   # /usr/bin/python3 -m pip install chromedriver-binary
      
-Note: you can also do specific versions of chromedrive-binary:+Note: you can also do specific versions of chromedrive-binary (see available versions at https://pypi.org/project/chromedriver-py/#history):
  
   # python3 -m pip install chromedriver-binary==90.0.4430.24.0   # python3 -m pip install chromedriver-binary==90.0.4430.24.0
python_notes.txt · Last modified: 2023/04/05 08:56 by juckins