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 revisionBoth sides next revision
python_notes [2022/02/02 14:07] juckinspython_notes [2022/03/03 11:36] juckins
Line 1: Line 1:
 ==== Python Install Notes ==== ==== Python Install Notes ====
 +
 +__3 Mar 2022__
 +
 +Upgraded several python packages on both __physical__ and __virtual__ servers.
 +
 +  [root@tidewater: ~]# python3 -m pip list --outdated
 +  Package             Version        Latest         Type
 +  ------------------- -------------- -------------- -----
 +  charset-normalizer  2.0.11         2.0.12         wheel
 +  chromedriver-binary 98.0.4758.48.0 99.0.4844.51.0 sdist
 +  numpy               1.12.1         1.19.5         wheel
 +  pytesseract         0.3.8          0.3.9          wheel
 +
 +  [root@tidewater: ~]# python3 -m pip install --upgrade <package_name>
 +  
 +Fix chromedriver-binary permissions:
 +  
 +  [root@tidewater: ~]# find /usr -name "chromedriver" -exec ls -l {} \;
 +  [root@tidewater: ~]# chmod 755 /usr/local/lib/python3.6/site-packages/chromedriver_binary/chromedriver
 +  
 +The virtual server updates included the following:
 +
 +  [root@centos8S-vtatdb2-l: ~]# python3 -m pip list --outdated
 +  Package            Version  Latest   Type
 +  ------------------ -------- -------- -----
 +  charset-normalizer 2.0.11   2.0.12   wheel
 +  dbus-python        1.2.4    1.2.18   sdist
 +  ethtool            0.14     0.15     sdist
 +  httplib2           0.20.2   0.20.4   wheel
 +  imageio            2.14.1   2.16.0   wheel
 +  lxml               4.7.1    4.8.0    wheel
 +  ntplib             0.3.3    0.4.0    wheel
 +  pycairo            1.16.3   1.20.1   sdist
 +  pycups             1.9.72   2.0.1    sdist
 +  pycurl             7.43.0.2 7.44.1   sdist
 +  PyGObject          3.28.3   3.42.0   sdist
 +  pykickstart        3.35     3.37     sdist
 +  python-augeas      0.5.0    1.1.0    sdist
 +  pyudev             0.23.1   0.23.2   wheel
 +  simpleline         1.1.1    1.9.0    wheel
 +  slip               0.6.4    20191113 sdist
 +  typing_extensions  4.0.1    4.1.1    wheel
 +
  
 __2 Feb 2022__ __2 Feb 2022__
python_notes.txt · Last modified: 2023/04/05 08:56 by juckins