public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* misterious GIT failure
       [not found] <638366959.5124927.1610072027608.ref@mail.yahoo.com>
@ 2021-01-08  2:13 ` matthew patton
  2021-01-08 10:35   ` Adam Dinwoodie
  2021-01-08 16:02   ` Achim Gratz
  0 siblings, 2 replies; 13+ messages in thread
From: matthew patton @ 2021-01-08  2:13 UTC (permalink / raw)
  To: Cygwin Cygwin

I've been using cygwin since like 20 years ago and do everything in it. A couple days ago my Git program mysteriously stopped working. I can see (GIT_TRACE=1) it invoke SSH and HTTPS connections just fine but it fails with a short-read/write when it's time for pack or unpack. Baffled I uninstalled Cygwin and blew away the Repo and started over. Git worked fine for a few hours and then BAM same problem. I've tried all three versions of git available in the repos. Short of deleting Cygwin entirely and starting over, nothing brings it back.

I use Github, Bitbucket, and CodeCommit (amazon) for various repositories and once Git stops working it won't work on any of them. (I briefly thought maybe there was some badly behaved backends)

Here's an example output. Anyone have a notion as to what the dickens is going on?

21:04:24.233957 git.c:444               trace: built-in: git fetch
21:04:24.238648 run-command.c:664       trace: run_command: unset GIT_PREFIX; GIT_PROTOCOL=version=2 ssh -o SendEnv=GIT_PROTOCOL git@github.com 'git-upload-pack '\''tb3088/shell-environment.git'\'''
remote: Enumerating objects: 34, done.
remote: Counting objects: 100% (34/34), done.
remote: Compressing objects: 100% (25/25), done.
21:04:25.119943 run-command.c:664       trace: run_command: git index-pack --stdin -v --fix-thin '--keep=fetch-pack 1011 on SOHO-GP4D633' --pack_header=2,1635
fatal: index-pack failed


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-08  2:13 ` misterious GIT failure matthew patton
@ 2021-01-08 10:35   ` Adam Dinwoodie
  2021-01-08 16:02   ` Achim Gratz
  1 sibling, 0 replies; 13+ messages in thread
From: Adam Dinwoodie @ 2021-01-08 10:35 UTC (permalink / raw)
  To: matthew patton via Cygwin

On Friday 08 January 2021 at 02:13 am +0000, matthew patton via Cygwin wrote:
> I've been using cygwin since like 20 years ago and do everything in
> it. A couple days ago my Git program mysteriously stopped working. I
> can see (GIT_TRACE=1) it invoke SSH and HTTPS connections just fine
> but it fails with a short-read/write when it's time for pack or
> unpack. Baffled I uninstalled Cygwin and blew away the Repo and
> started over. Git worked fine for a few hours and then BAM same
> problem. I've tried all three versions of git available in the repos.
> Short of deleting Cygwin entirely and starting over, nothing brings it
> back.
> 
> I use Github, Bitbucket, and CodeCommit (amazon) for various
> repositories and once Git stops working it won't work on any of them.
> (I briefly thought maybe there was some badly behaved backends)
> 
> Here's an example output. Anyone have a notion as to what the dickens is going on?
> 
> 21:04:24.233957 git.c:444               trace: built-in: git fetch
> 21:04:24.238648 run-command.c:664       trace: run_command: unset GIT_PREFIX; GIT_PROTOCOL=version=2 ssh -o SendEnv=GIT_PROTOCOL git@github.com 'git-upload-pack '\''tb3088/shell-environment.git'\'''
> remote: Enumerating objects: 34, done.
> remote: Counting objects: 100% (34/34), done.
> remote: Compressing objects: 100% (25/25), done.
> 21:04:25.119943 run-command.c:664       trace: run_command: git index-pack --stdin -v --fix-thin '--keep=fetch-pack 1011 on SOHO-GP4D633' --pack_header=2,1635
> fatal: index-pack failed

This looks like some sort of problem writing to disk to me.  Where are
you storing your Git repositories?  Is it on a regular NTFS disk, or a
file share, or something more esorteric?  And does that drive have
plenty of free space?

Can you please provide the cygcheck output per
https://cygwin.com/problems.html?

If neither of these points at an obvious problem, I expect the next step
will be either (a) looking at Cygwin strace output to get a more
detailed view of what's happening when things go wrong, or (b) having
you build and run the full Git test suite with a view to using that to
narrow down what steps are going wrong.

Adam

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-08  2:13 ` misterious GIT failure matthew patton
  2021-01-08 10:35   ` Adam Dinwoodie
@ 2021-01-08 16:02   ` Achim Gratz
  2021-01-08 19:32     ` matthew patton
  1 sibling, 1 reply; 13+ messages in thread
From: Achim Gratz @ 2021-01-08 16:02 UTC (permalink / raw)
  To: cygwin

matthew patton via Cygwin writes:
> I've been using cygwin since like 20 years ago and do everything in
> it. A couple days ago my Git program mysteriously stopped working. I
> can see (GIT_TRACE=1) it invoke SSH and HTTPS connections just fine
> but it fails with a short-read/write when it's time for pack or
> unpack. Baffled I uninstalled Cygwin and blew away the Repo and
> started over. Git worked fine for a few hours and then BAM same
> problem.

That seems to indicate some sort of behavioral based firewalling or IDS
rather than a problem in Cygwin.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptations for KORG EX-800 and Poly-800MkII V0.9:
http://Synth.Stromeko.net/Downloads.html#KorgSDada

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-08 16:02   ` Achim Gratz
@ 2021-01-08 19:32     ` matthew patton
  2021-01-09  2:27       ` Andrey Repin
  0 siblings, 1 reply; 13+ messages in thread
From: matthew patton @ 2021-01-08 19:32 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 1574 bytes --]

Adam Dinwoodie wrote:> This looks like some sort of problem writing to disk to me.  Where are> you storing your Git repositories?  Is it on a regular NTFS disk
plain NTFS (win10 exterprise) with hundreds of GB free. I blew away contents of /tmp just to make sure it wasn't something silly going on there. It's git pack/unpack aborting the read/write from the pipe which causes SSH to then close and tear down the connection. SSH client helpfully provides stats on how many packets transferred up/down.
Achim Gratz wrote:> That seems to indicate some sort of behavioral based firewalling or IDS
I thought it could be that too. Tried with and without corporate VPN. But it's worked for over a year with this config and nary a hiccup. And anyway if I immediately switch to my WSL (Ubuntu) window or Git-Bash and issue the Git commands they run perfectly. Yes my Cygwin and WSL and Git-Bash share the exact same repository directories.
If I blow away the entire Cygwin installation (c:\cygwin64) and re-install Cygwin Git it will resume working and do so for a while. Like I mentioned previously re-installing Git does not solve the issue. And yes my SSH sessions while Git is "broken" continue to work like a champ, so it's not SSH.
I've attached cygcheck. Before I even posted I went looking for strace() to no avail. I also even did a manual connection attempt like this:    ssh blah | git index-pack --stdin -v --fix-thin '--keep=fetch-pack 1011 on SOHO-GP4D633' --pack_header=2,1635
and it would fail in the same manner as when it had been invoked "normally".

[-- Attachment #2: cygcheck.out --]
[-- Type: application/octet-stream, Size: 126781 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Fri Jan 08 17:07:04 2021

Windows 10 Professional Ver 10.0 Build 18363 

Path:	C:\Users\MP1116\Dropbox\Work_Projects\ComSearch\.aws\826047437764\bin
	C:\Users\MP1116\.local\bin
	C:\Users\MP1116\bin
	C:\cygwin64\usr\local\bin
	C:\cygwin64\bin
	C:\WINDOWS\system32
	C:\WINDOWS
	C:\WINDOWS\system32\WindowsPowerShell\v1.0
	C:\Program Files (x86)\Common Files\Oracle\Java\javapath
	C:\Users\mp1116\AppData\Local\GitHubDesktop\bin

Output from C:\cygwin64\bin\id.exe
UID: 1228750(MP1116)
GID: 1049089(Domain Users)
1049089(Domain Users)
545(Users)
4(INTERACTIVE)
66049(CONSOLE LOGON)
11(Authenticated Users)
15(This Organization)
4095(CurrentSession)
66048(LOCAL)
1269339(Az-BldProdSol-QMSAppsProd_Reader)
1209319(GLB_CNWX1_HRPub_RO)
1126501(DLOACVA)
1119008(GLB_ASZ_IQC_Template_RO)
1075391(GLB_ASZ_EHS_RO)
1145395(CERTSVC_DCOM_ACCESS)
1072237(ACVAInternetUsers)
1099697(ACVACOMSEARCH-InteractiveSolutions-3650EMails-Modify)
1072273(InteractiveSolutions)
1075325(GLB_ASZ_1st_Article_Report_RO)
1131197(ACVACOMSEARCH-WINDPOWER-MODIFY)
1063443(VPN Users)
1072229(ACVA-COMSEARCH-ALL)
1139290(WSAUsers_N-Z)
1072230(ACVACOMSEARCH-EVERYONE)
1099709(ACVA-DEPTS-IS-GEOPLANNER-MODIFY)
1269338(Az-BldProdSol-QMSAppsDev_Reader)
1130335(GLB_ASZ_5S_Management_RO)
1209331(GLB_CNWX1_Production_RO)
1059699(GlbWirelessUsers)
1210220(#legoUAT)
1204772(WS1-NAR)
1219699(#legoSecurity)
1210423(#PortalSupport)
1105319(#Deployment_Messages)
1196047(#legoRoot)
1210221(#legoshared-services)
1133658(#ACVATechSupport)
1075467(GLB_ASZ_Training_Material_Hard_Skill_RO)
1219698(#legoDev)
1099451(#ACVA_Comsearch_DEV_Support)
1060165(#ACVA-ALL)
1105318(#Script_Messages)
1205622(#O365_LockDown)
1215284(#legoProd)
1125379(ACVAInternetUsers)
1075723(GLB_ASZ_EHS_RO)
1708620(ACVACOMSEARCH-EVERYONE)
1137566(ACVA-COMSEARCH-ALL)
1718957(VPN Users)
1115100(InteractiveSolutions)
1165049(GLB_ASZ_1st_Article_Report_RO)
1120079(#ACVA-ALL)
1075707(GLB_ASZ_Training_Material_Hard_Skill_RO)
70145(Authentication authority asserted identity)
1056308(Citrix Users)
1058370(FaxUsers)
1169575(AcordeSAPTransports)
1081577(glbaopwirelessusers)
1061367(Citrix Users)
1073856(FaxUsers)
1073913(glbaopwirelessusers)
1073802(AcordeSAPTransports)
401408(Medium Mandatory Level)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = 'MP1116'
PWD = '/home/MP1116/workspace/gruntwork.io/module-ecs'
HOME = '/home/MP1116'

USERDOMAIN = 'COMMSCOPE'
OS = 'Windows_NT'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
PROCESSOR_LEVEL = '6'
PSModulePath = 'C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules'
CommonProgramW6432 = 'C:\Program Files\Common Files'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
LANG = 'en_US.utf8'
TZ = 'America/New_York'
SNC_LIB = 'gsskrb5.dll'
HOSTNAME = 'SOHO-GP4D633'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/home/MP1116/workspace/gruntwork.io'
AWS_CONFIG_FILE = '/home/MP1116/.aws/iqinkdemo/config'
EDITOR = '/usr/bin/vim'
GEM_HOME = '/home/mp1116/AppData/Local/.gem'
UATDATA = 'C:\windows\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77'
USERNAME = 'MP1116'
LOGONSERVER = '\\GPR1PDCS06'
PROCESSOR_ARCHITECTURE = 'AMD64'
SSH_AUTH_SOCK = '/tmp/ssh-8V3qOACfDdMc/agent.1453'
AWS_DEFAULT_REGION = 'us-east-1'
LOCALAPPDATA = 'C:\Users\mp1116\AppData\Local'
COMPUTERNAME = 'SOHO-GP4D633'
FPS_BROWSER_APP_PROFILE_STRING = 'Internet Explorer'
!:: = '::\'
PAGER = 'less -RF'
SYSTEMDRIVE = 'C:'
USERPROFILE = 'C:\Users\mp1116'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
SYSTEMROOT = 'C:\WINDOWS'
PLMVIS_82_LIBPATH = 'C:\Program Files (x86)\SAP\FrontEnd\SAPgui\Program'
USERDOMAIN_ROAMINGPROFILE = 'COMMSCOPE'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel'
SNC_LIB_64_2 = 'C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll'
SSF_LIBRARY_PATH_64 = 'C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll'
TMP = '/tmp'
LC_CTYPE = 'en_US.UTF-8'
SSH_AGENT_PID = '1454'
TERM_PROGRAM = 'mintty'
TERM_PROGRAM_VERSION = '3.4.4'
SNC_LIB_64 = 'C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll'
PROCESSOR_REVISION = '8e0c'
FPS_BROWSER_USER_PROFILE_STRING = 'Default'
PROFILEREAD = 'true'
USERDNSDOMAIN = 'COMMSCOPE.COM'
NUMBER_OF_PROCESSORS = '8'
ProgramW6432 = 'C:\Program Files'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
APPDATA = 'C:\Users\mp1116\AppData\Roaming'
SHELL = '/bin/bash'
TERM = 'xterm-256color'
WINDIR = 'C:\WINDOWS'
AWS_SHARED_CREDENTIALS_FILE = '/home/MP1116/.aws/iqinkdemo/credentials'
ProgramData = 'C:\ProgramData'
SHLVL = '1'
MINTTY_SHORTCUT = '/home/mp1116/AppData/Roaming/Microsoft/Internet Explorer/Quick Launch/User Pinned/TaskBar/Cygwin64 Terminal.lnk'
PRINTER = 'Webex Document Loader'
PROGRAMFILES = 'C:\Program Files'
AWS_SESSION_DURATION = '28800'
ALLUSERSPROFILE = 'C:\ProgramData'
TEMP = '/tmp'
DriverData = 'C:\Windows\System32\Drivers\DriverData'
SESSIONNAME = 'Console'
ProgramFiles(x86) = 'C:\Program Files (x86)'
PS1 = '\n\[\033[36m\]\u\[\033[0m\]@\[\033[32m\]\h \[\033[33m\]\w\[\033[0m\]\n\[\033[4m\]AWS:\[\033[0m\] \[\033[35m\]iqinkdemo:\[\033[1m\]--\[\033[0m\] / \[\033[34m\]\[\033[1m\]us-east-1\[\033[0m\]\n\!(1)\[\033[0m\] \[\033k\033\134\]\$ '
HOMEDRIVE = 'C:'
SNC_LIB_2 = 'C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
HOMEPATH = '\Users\mp1116'
SSF_LIBRARY_PATH = 'C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll'
ORIGINAL_PATH = '/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/system32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files (x86)/Common Files/Oracle/Java/javapath:/home/mp1116/AppData/Local/GitHubDesktop/bin'
EXECIGNORE = '*.dll'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\Children\121\Internet Explorer\DOMStorage\cygwin.com
  (default) = 0x00000000
  NumberOfSubdomains = 0x00000002
HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\Children\121\Internet Explorer\EdpDomStorage\cygwin.com
  (default) = 0x00000000
  NumberOfSubdomains = 0x00000000
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'C:\cygwin64'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: e022582115c10879 Path: C:\cygwin64
  User:   Key: e022582115c10879 Path: C:\cygwin64

c:  hd  NTFS    241339Mb  31% CP CS UN PA FC    QU  OS

C:\cygwin64      /          system  binary,auto
C:\Users         /home      system  binary
C:\cygwin64\bin  /usr/bin   system  binary,auto
C:\cygwin64\lib  /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,posix=0,auto

Found: C:\cygwin64\bin\awk
 -> C:\cygwin64\bin\gawk.exe
Found: C:\cygwin64\bin\bash.exe
Found: C:\WINDOWS\system32\bash.exe
Warning: C:\cygwin64\bin\bash.exe hides C:\WINDOWS\system32\bash.exe
Found: C:\cygwin64\bin\cat.exe
Found: C:\WINDOWS\system32\certutil.exe
Not Found: clinfo
Found: C:\WINDOWS\system32\comp.exe
Found: C:\WINDOWS\system32\convert.exe
Found: C:\cygwin64\bin\cp.exe
Found: C:\cygwin64\bin\cpp.exe
Not Found: crontab
Found: C:\cygwin64\bin\curl.exe
Found: C:\WINDOWS\system32\curl.exe
Warning: C:\cygwin64\bin\curl.exe hides C:\WINDOWS\system32\curl.exe
Found: C:\cygwin64\bin\expand.exe
Found: C:\WINDOWS\system32\expand.exe
Warning: C:\cygwin64\bin\expand.exe hides C:\WINDOWS\system32\expand.exe
Found: C:\cygwin64\bin\find.exe
Found: C:\WINDOWS\system32\find.exe
Warning: C:\cygwin64\bin\find.exe hides C:\WINDOWS\system32\find.exe
Found: C:\WINDOWS\system32\ftp.exe
Found: C:\cygwin64\bin\gcc.exe
Not Found: gdb
Found: C:\cygwin64\bin\grep.exe
Found: C:\cygwin64\bin\hostname.exe
Found: C:\WINDOWS\system32\hostname.exe
Warning: C:\cygwin64\bin\hostname.exe hides C:\WINDOWS\system32\hostname.exe
Found: C:\cygwin64\bin\kill.exe
Found: C:\WINDOWS\system32\klist.exe
Found: C:\cygwin64\bin\ld.exe
Found: C:\cygwin64\bin\ls.exe
Found: C:\cygwin64\bin\make.exe
Found: C:\cygwin64\bin\mv.exe
Found: C:\cygwin64\bin\nslookup.exe
Found: C:\WINDOWS\system32\nslookup.exe
Warning: C:\cygwin64\bin\nslookup.exe hides C:\WINDOWS\system32\nslookup.exe
Found: C:\cygwin64\bin\patch.exe
Found: C:\cygwin64\bin\perl.exe
Found: C:\WINDOWS\system32\replace.exe
Found: C:\cygwin64\bin\rm.exe
Found: C:\cygwin64\bin\sed.exe
Found: C:\cygwin64\bin\sh.exe
Found: C:\WINDOWS\system32\shutdown.exe
Found: C:\cygwin64\bin\sort.exe
Found: C:\WINDOWS\system32\sort.exe
Warning: C:\cygwin64\bin\sort.exe hides C:\WINDOWS\system32\sort.exe
Found: C:\cygwin64\bin\ssh.exe
Found: C:\cygwin64\bin\tar.exe
Found: C:\WINDOWS\system32\tar.exe
Warning: C:\cygwin64\bin\tar.exe hides C:\WINDOWS\system32\tar.exe
Found: C:\cygwin64\bin\test.exe
Found: C:\cygwin64\bin\timeout.exe
Found: C:\WINDOWS\system32\timeout.exe
Warning: C:\cygwin64\bin\timeout.exe hides C:\WINDOWS\system32\timeout.exe
Found: C:\cygwin64\bin\vi.exe
Found: C:\cygwin64\bin\vim.exe
Found: C:\cygwin64\bin\whoami.exe
Found: C:\WINDOWS\system32\whoami.exe
Warning: C:\cygwin64\bin\whoami.exe hides C:\WINDOWS\system32\whoami.exe

   39k 2016/09/19 C:\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygargp-0.dll" v0.0 ts=2016-09-19 02:13
   65k 2019/05/02 C:\cygwin64\bin\cygassuan-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygassuan-0.dll" v0.0 ts=2019-05-02 12:33
   29k 2020/09/12 C:\cygwin64\bin\cygatomic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygatomic-1.dll" v0.0 ts=2020-09-12 14:32
   19k 2018/12/20 C:\cygwin64\bin\cygattr-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygattr-1.dll" v0.0 ts=2018-12-20 09:48
   63k 2019/08/27 C:\cygwin64\bin\cygbind9-161.dll - os=4.0 img=0.0 sys=5.2
                  "cygbind9-161.dll" v0.0 ts=2019-08-27 20:40
  254k 2020/03/31 C:\cygwin64\bin\cygblkid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygblkid-1.dll" v0.0 ts=2020-03-28 06:22
  892k 2018/04/09 C:\cygwin64\bin\cygboost_regex-1_66.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_regex-1_66.dll" v0.0 ts=2018-04-09 20:30
  132k 2020/10/10 C:\cygwin64\bin\cygbrotlicommon-1.dll - os=4.0 img=1.0 sys=5.2
                  "cygbrotlicommon-1.dll" v0.0 ts=2020-10-10 15:20
   46k 2020/10/10 C:\cygwin64\bin\cygbrotlidec-1.dll - os=4.0 img=1.0 sys=5.2
                  "cygbrotlidec-1.dll" v0.0 ts=2020-10-10 15:21
   66k 2019/07/21 C:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2019-07-22 00:05
   71k 2018/03/16 C:\cygwin64\bin\cygcares-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcares-2.dll" v0.0 ts=2018-03-16 02:33
   42k 2020/02/17 C:\cygwin64\bin\cygcbor-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcbor-0.dll" v0.0 ts=2020-02-17 12:04
   13k 2019/01/02 C:\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcom_err-2.dll" v0.0 ts=2019-01-02 02:39
  194k 2019/04/03 C:\cygwin64\bin\cygcrypt-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-2.dll" v0.0 ts=2019-04-03 22:05
 2363k 2019/09/11 C:\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.0.0.dll" v0.0 ts=2019-09-11 18:40
 2451k 2020/04/08 C:\cygwin64\bin\cygcrypto-1.1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.1.dll" v0.0 ts=2020-04-08 12:11
  632k 2020/12/14 C:\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2020-12-12 19:20
 1552k 2017/09/28 C:\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2017-09-28 20:05
  119k 2017/09/28 C:\cygwin64\bin\cygdb_cxx-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_cxx-5.3.dll" v0.0 ts=2017-09-28 20:06
  569k 2017/09/28 C:\cygwin64\bin\cygdb_sql-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_sql-5.3.dll" v0.0 ts=2017-09-28 20:06
 2083k 2019/08/27 C:\cygwin64\bin\cygdns-1106.dll - os=4.0 img=0.0 sys=5.2
                  "cygdns-1106.dll" v0.0 ts=2019-08-27 20:39
  154k 2013/10/20 C:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-10-20 21:56
  181k 2018/09/27 C:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2018-09-27 18:30
  353k 2020/03/31 C:\cygwin64\bin\cygfdisk-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfdisk-1.dll" v0.0 ts=2020-03-28 06:23
   27k 2015/11/17 C:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2015-11-17 22:14
  136k 2020/10/20 C:\cygwin64\bin\cygfido2-1.dll - os=4.0 img=1.5 sys=5.2
                  "cygfido2-1.dll" v0.0 ts=2020-10-20 19:25
   56k 2019/07/28 C:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2019-07-28 17:33
  137k 2019/03/29 C:\cygwin64\bin\cyggc-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggc-1.dll" v0.0 ts=2019-03-29 22:16
   72k 2020/09/12 C:\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2020-09-12 14:20
   49k 2019/07/10 C:\cygwin64\bin\cyggdbm-6.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-6.dll" v0.0 ts=2019-07-10 14:53
   13k 2019/07/10 C:\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm_compat-4.dll" v0.0 ts=2019-07-10 14:53
  580k 2020/11/16 C:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2020-11-16 18:53
 1472k 2019/07/29 C:\cygwin64\bin\cyggnutls-30.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-30.dll" v0.0 ts=2019-07-29 03:55
  206k 2020/09/12 C:\cygwin64\bin\cyggomp-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-1.dll" v0.0 ts=2020-09-12 14:21
  116k 2020/02/16 C:\cygwin64\bin\cyggpg-error-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggpg-error-0.dll" v0.0 ts=2020-02-16 21:28
  249k 2017/06/28 C:\cygwin64\bin\cyggpgme-11.dll - os=4.0 img=0.0 sys=5.2
                  "cyggpgme-11.dll" v0.0 ts=2017-06-29 00:10
  274k 2018/03/16 C:\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2018-03-16 03:38
 1070k 2020/03/13 C:\cygwin64\bin\cygguile-2.2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygguile-2.2-1.dll" v0.0 ts=2020-03-08 21:47
   33k 2017/02/13 C:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2017-02-11 22:39
  168k 2019/02/19 C:\cygwin64\bin\cyghogweed-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyghogweed-4.dll" v0.0 ts=2019-02-19 06:59
 1007k 2020/07/13 C:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2020-07-13 13:57
26267k 2018/03/27 C:\cygwin64\bin\cygicudata61.dll - os=4.0 img=0.0 sys=5.2
                  "cygicudata61.dll" v0.0 ts=2018-03-27 02:15
 2339k 2018/03/27 C:\cygwin64\bin\cygicui18n61.dll - os=4.0 img=0.0 sys=5.2
                  "cygicui18n61.dll" v0.0 ts=2018-03-27 02:13
   47k 2018/03/27 C:\cygwin64\bin\cygicuio61.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuio61.dll" v0.0 ts=2018-03-27 02:13
 1506k 2018/03/27 C:\cygwin64\bin\cygicuuc61.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuuc61.dll" v0.0 ts=2018-03-27 02:12
  114k 2019/07/29 C:\cygwin64\bin\cygidn2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn2-0.dll" v0.0 ts=2019-07-29 03:22
   42k 2016/10/23 C:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2016-10-23 07:17
   39k 2019/08/27 C:\cygwin64\bin\cygirs-161.dll - os=4.0 img=0.0 sys=5.2
                  "cygirs-161.dll" v0.0 ts=2019-08-27 20:40
  404k 2019/08/27 C:\cygwin64\bin\cygisc-1100.dll - os=4.0 img=0.0 sys=5.2
                  "cygisc-1100.dll" v0.0 ts=2019-08-27 20:38
  118k 2019/08/27 C:\cygwin64\bin\cygisccfg-163.dll - os=4.0 img=0.0 sys=5.2
                  "cygisccfg-163.dll" v0.0 ts=2019-08-27 20:40
 1560k 2020/03/01 C:\cygwin64\bin\cygisl-22.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-22.dll" v0.0 ts=2020-03-01 16:46
  322k 2019/04/29 C:\cygwin64\bin\cygjq-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygjq-1.dll" v0.0 ts=2019-04-29 20:54
   36k 2015/12/29 C:\cygwin64\bin\cygjson-c-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygjson-c-2.dll" v0.0 ts=2015-12-29 18:44
  192k 2018/03/16 C:\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2018-03-16 03:37
  754k 2018/03/16 C:\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2018-03-16 03:37
   37k 2018/03/16 C:\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2018-03-16 03:36
   48k 2020/11/14 C:\cygwin64\bin\cyglber-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglber-2-4-2.dll" v0.0 ts=2020-11-14 15:44
  264k 2020/11/14 C:\cygwin64\bin\cygldap-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap-2-4-2.dll" v0.0 ts=2020-11-14 15:45
  282k 2020/11/14 C:\cygwin64\bin\cygldap_r-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap_r-2-4-2.dll" v0.0 ts=2020-11-14 15:47
   72k 2017/01/27 C:\cygwin64\bin\cyglmdb-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyglmdb-0.dll" v0.0 ts=2017-01-27 18:20
   35k 2019/07/28 C:\cygwin64\bin\cygltdl-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygltdl-7.dll" v0.0 ts=2019-07-28 17:44
   70k 2019/08/27 C:\cygwin64\bin\cyglwres-161.dll - os=4.0 img=0.0 sys=5.2
                  "cyglwres-161.dll" v0.0 ts=2019-08-27 20:40
   73k 2017/06/19 C:\cygwin64\bin\cyglz4-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyglz4-1.dll" v0.0 ts=2017-06-19 15:40
  144k 2019/07/21 C:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2019-07-22 00:15
  153k 2020/10/29 C:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2020-10-29 21:32
  212k 2021/01/07 C:\cygwin64\bin\cygman-2-9-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-9-3.dll" v0.0 ts=2021-01-07 19:43
   24k 2021/01/07 C:\cygwin64\bin\cygmandb-2-9-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-9-3.dll" v0.0 ts=2021-01-07 19:43
   22k 2019/08/27 C:\cygwin64\bin\cygmaxminddb-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygmaxminddb-0.dll" v0.0 ts=2019-08-27 18:45
   28k 2019/07/28 C:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2019-07-28 17:32
   42k 2013/08/12 C:\cygwin64\bin\cygmetalink-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmetalink-3.dll" v0.0 ts=2013-08-13 00:02
  100k 2020/10/25 C:\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpc-3.dll" v0.0 ts=2020-10-25 13:36
 2664k 2020/07/11 C:\cygwin64\bin\cygmpfr-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-6.dll" v0.0 ts=2020-07-11 14:36
  301k 2019/07/28 C:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2019-07-28 17:30
  205k 2019/02/19 C:\cygwin64\bin\cygnettle-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygnettle-6.dll" v0.0 ts=2019-02-19 06:59
  144k 2019/03/27 C:\cygwin64\bin\cygnghttp2-14.dll - os=4.0 img=0.0 sys=5.2
                  "cygnghttp2-14.dll" v0.0 ts=2019-03-27 04:05
  514k 2019/12/20 C:\cygwin64\bin\cygonig-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygonig-5.dll" v0.0 ts=2019-12-20 06:48
 1020k 2020/03/27 C:\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygp11-kit-0.dll" v0.0 ts=2020-03-27 22:30
   14k 2019/07/28 C:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2019-07-28 17:32
  498k 2020/12/29 C:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2020-12-29 17:11
  603k 2021/01/01 C:\cygwin64\bin\cygpcre2-8-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre2-8-0.dll" v0.0 ts=2021-01-01 16:10
 3398k 2020/06/07 C:\cygwin64\bin\cygperl5_30.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_30.dll" v0.0 ts=2020-06-07 09:02
   42k 2020/12/27 C:\cygwin64\bin\cygpipeline-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpipeline-1.dll" v0.0 ts=2020-12-27 14:15
   53k 2020/04/06 C:\cygwin64\bin\cygpkgconf-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygpkgconf-3.dll" v0.0 ts=2020-04-06 17:37
   41k 2016/07/13 C:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2016-07-13 06:16
   59k 2020/02/22 C:\cygwin64\bin\cygprocps-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygprocps-8.dll" v0.0 ts=2020-02-22 19:49
   65k 2019/07/21 C:\cygwin64\bin\cygpsl-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpsl-5.dll" v0.0 ts=2019-07-21 19:18
  357k 2020/09/12 C:\cygwin64\bin\cygquadmath-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygquadmath-0.dll" v0.0 ts=2020-09-12 14:32
  219k 2017/02/13 C:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2017-02-11 22:39
 2765k 2019/09/16 C:\cygwin64\bin\cygruby260.dll - os=4.0 img=0.0 sys=5.2
                  "cygruby260.dll" v2.6 ts=2019-09-16 01:57
   99k 2020/01/09 C:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2020-01-09 02:13
   11k 2015/07/17 C:\cygwin64\bin\cygsigsegv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-17 22:35
  156k 2020/03/31 C:\cygwin64\bin\cygsmartcols-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsmartcols-1.dll" v0.0 ts=2020-03-28 06:22
  733k 2018/04/12 C:\cygwin64\bin\cygsource-highlight-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygsource-highlight-4.dll" v0.0 ts=2018-04-12 01:30
 1277k 2020/12/24 C:\cygwin64\bin\cygsqlite3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsqlite3-0.dll" v0.0 ts=2020-12-24 07:59
  156k 2016/03/02 C:\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssh2-1.dll" v0.0 ts=2016-03-02 18:03
  408k 2019/09/11 C:\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.0.0.dll" v0.0 ts=2019-09-11 18:40
  506k 2020/04/08 C:\cygwin64\bin\cygssl-1.1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.1.dll" v0.0 ts=2020-04-08 12:12
 1676k 2020/09/12 C:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2020-09-12 14:26
   68k 2019/07/29 C:\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2019-07-29 03:12
   57k 2019/07/28 C:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2019-07-28 17:31
 1612k 2018/08/16 C:\cygwin64\bin\cygunistring-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-2.dll" v0.0 ts=2018-08-16 20:33
   73k 2015/02/11 C:\cygwin64\bin\cygusb0.dll - os=4.0 img=0.0 sys=5.2
                  "cygusb0.dll" v0.0 ts=2015-02-11 01:16
   27k 2020/03/31 C:\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyguuid-1.dll" v0.0 ts=2020-03-28 06:22
 1238k 2020/09/11 C:\cygwin64\bin\cygxml2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygxml2-2.dll" v0.0 ts=2020-09-11 15:37
   37k 2020/09/06 C:\cygwin64\bin\cygxxhash-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxxhash-0.dll" v0.0 ts=2020-09-07 00:04
  121k 2014/12/08 C:\cygwin64\bin\cygyaml-0-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygyaml-0-2.dll" v0.0 ts=2014-12-08 18:19
   83k 2017/03/03 C:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2017-03-03 21:42
  757k 2020/12/19 C:\cygwin64\bin\cygzstd-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygzstd-1.dll" v0.0 ts=2020-12-19 16:35
 3473k 2020/08/22 C:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2020-08-22 18:49
    Cygwin DLL version info:
        DLL version: 3.1.7
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 340
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5


No Cygwin services found.


Cygwin Package Information
Last downloaded files to: C:\Users\mp1116\Downloads
Last downloaded files from: http://mirror.cs.vt.edu/pub/cygwin/cygwin/

Package                    Version                         Status
_autorebase                001007-1                        OK
alternatives               1.3.30c-10                      OK
base-cygwin                3.8-1                           OK
base-files                 4.3-2                           OK
bash                       4.4.12-3                        OK
bash-completion            2.7-1                           OK
bind-utils                 9.11.9-1                        OK
binutils                   2.34+1git.de9c1b7cfe-1          OK
bzip2                      1.0.8-1                         OK
ca-certificates            2.40-1                          OK
coreutils                  8.26-2                          OK
crypto-policies            20190218-1                      OK
csih                       0.9.11-1                        OK
curl                       7.74.0-1                        OK
cygrunsrv                  1.62-1                          OK
cygutils                   1.4.16-2                        OK
cygwin                     3.1.7-1                         OK
cygwin-devel               3.1.7-1                         OK
dash                       0.5.9.1-1                       OK
diffutils                  3.5-2                           OK
editrights                 1.03-1                          OK
file                       5.39-1                          OK
findutils                  4.6.0-1                         OK
gawk                       5.1.0-1                         OK
gcc-core                   10.2.0-1                        OK
getent                     2.18.90-4                       OK
git                        2.30.0-1                        OK
gnupg                      1.4.23-1                        OK
grep                       3.0-2                           OK
groff                      1.22.4-1                        OK
gzip                       1.8-1                           OK
hostname                   3.13-1                          OK
imake                      1.0.8-1                         OK
info                       6.7-1                           OK
ipc-utils                  1.0-2                           OK
jq                         1.6-1                           OK
less                       563-1                           OK
libargp                    20110921-3                      OK
libassuan0                 2.5.3-1                         OK
libatomic1                 10.2.0-1                        OK
libattr1                   2.4.48-2                        OK
libbind9_161               9.11.9-1                        OK
libblkid1                  2.33.1-2                        OK
libboost_regex1.66         1.66.0-1                        OK
libbrotlicommon1           1.0.9-1                         OK
libbrotlidec1              1.0.9-1                         OK
libbz2_1                   1.0.8-1                         OK
libcares2                  1.14.0-1                        OK
libcbor                    0.5.0-1                         OK
libcom_err2                1.44.5-1                        OK
libcrypt2                  4.4.4-1                         OK
libcurl4                   7.74.0-1                        OK
libdb5.3                   5.3.28-2                        OK
libdns1106                 9.11.9-1                        OK
libedit0                   20130712-1                      OK
libexpat1                  2.2.6-1                         OK
libfdisk1                  2.33.1-2                        OK
libffi6                    3.2.1-2                         OK
libfido2                   1.5.0-1                         OK
libgc1                     8.0.4-1                         OK
libgcc1                    10.2.0-1                        OK
libgdbm6                   1.18.1-1                        OK
libgdbm_compat4            1.18.1-1                        OK
libgmp10                   6.2.1-1                         OK
libgnutls30                3.6.9-1                         OK
libgomp1                   10.2.0-1                        OK
libgpg-error0              1.37-1                          OK
libgpgme11                 1.9.0-1                         OK
libgssapi_krb5_2           1.15.2-2                        OK
libguile2.2_1              2.2.7-1                         OK
libhogweed4                3.4.1-1                         OK
libiconv2                  1.16-2                          OK
libicu61                   61.1-1                          OK
libidn2_0                  2.2.0-1                         OK
libintl8                   0.19.8.1-2                      OK
libirs161                  9.11.9-1                        OK
libisc1100                 9.11.9-1                        OK
libisccfg163               9.11.9-1                        OK
libisl22                   0.22.1-2                        OK
libjq1                     1.6-1                           OK
libjson-c-common           0.12-1                          OK
libjson-c2                 0.12-1                          OK
libk5crypto3               1.15.2-2                        OK
libkrb5_3                  1.15.2-2                        OK
libkrb5support0            1.15.2-2                        OK
liblmdb0                   0.9.19-1                        OK
libltdl7                   2.4.6-7                         OK
liblwres161                9.11.9-1                        OK
liblz4_1                   1.7.5-1                         OK
liblzma5                   5.2.4-1                         OK
libmaxminddb0              1.3.2-1                         OK
libmetalink3               0.1.2-1                         OK
libmpc3                    1.2.1-1                         OK
libmpfr6                   4.1.0-1                         OK
libncursesw10              6.1-1.20190727                  OK
libnettle6                 3.4.1-1                         OK
libnghttp2_14              1.37.0-1                        OK
libonig5                   6.9.4-1                         OK
libopenldap2_4_2           2.4.56-1                        OK
libp11-kit0                0.23.20-1                       OK
libpcre1                   8.44-2                          OK
libpcre2_8_0               10.36-1                         OK
libpipeline1               1.5.3-1                         OK
libpkgconf3                1.6.3-1                         OK
libpopt-common             1.16-2                          OK
libpopt0                   1.16-2                          OK
libprocps8                 3.3.16-1                        OK
libpsl5                    0.21.0-1                        OK
libquadmath0               10.2.0-1                        OK
libreadline7               7.0.3-3                         OK
libsasl2_3                 2.1.27-1                        OK
libsigsegv2                2.10-2                          OK
libsmartcols1              2.33.1-2                        OK
libsource-highlight-common 3.1.8-6                         OK
libsource-highlight4       3.1.8-6                         OK
libsqlite3_0               3.34.0-1                        OK
libssh2_1                  1.7.0-1                         OK
libssl1.0                  1.0.2t-1                        OK
libssl1.1                  1.1.1f-1                        OK
libstdc++6                 10.2.0-1                        OK
libtasn1_6                 4.14-1                          OK
libunistring2              0.9.10-1                        OK
libusb0                    1.2.6.0-2                       OK
libuuid-devel              2.33.1-2                        OK
libuuid1                   2.33.1-2                        OK
libxml2                    2.9.10-2                        OK
libxxhash0                 0.8.0-1                         OK
libyaml0_2                 0.1.6-2                         OK
libzstd1                   1.4.8-1                         OK
login                      1.13-1                          OK
make                       4.3-1                           OK
makedepend                 1.0.6-1                         OK
man-db                     2.9.3-4                         OK
mintty                     3.4.4-1                         OK
nc                         1.107-4                         OK
ncurses                    6.1-1.20190727                  OK
openssh                    8.4p1-2                         OK
openssl                    1.1.1f-1                        OK
p11-kit                    0.23.20-1                       OK
p11-kit-trust              0.23.20-1                       OK
patch                      2.7.4-1                         OK
patchutils                 0.3.4-1                         OK
perl                       5.30.3-1                        OK
perl-Error                 0.17029-1                       OK
perl-Scalar-List-Utils     1.55-1                          OK
perl-TermReadKey           2.38-2                          OK
perl_autorebase            5.30.3-1                        OK
perl_base                  5.30.3-1                        OK
pkg-config                 1.6.3-1                         OK
pkgconf                    1.6.3-1                         OK
procps-ng                  3.3.16-1                        OK
publicsuffix-list-dafsa    20200326-1                      OK
python-pip-wheel           19.2.3-1                        OK
python-setuptools-wheel    41.2.0-1                        OK
python3                    3.8.3-1                         OK
python38                   3.8.3-1                         OK
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/build_env.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cache.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/base_command.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/command_context.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/main.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/parser.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/req_command.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/spinners.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/main.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/cache.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/check.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/completion.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/configuration.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/debug.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/download.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/freeze.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/hash.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/help.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/install.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/list.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/search.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/show.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/cache.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/configuration.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/base.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/installed.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/exceptions.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/index/collector.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/index/package_finder.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/index/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/locations.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/main.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/candidate.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/direct_url.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/format_control.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/index.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/link.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/scheme.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/search_scope.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/target_python.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/scheme.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/target_python.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/auth.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/cache.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/download.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/session.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/utils.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/cache.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/check.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/freeze.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/editable_legacy.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/prepare.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/pyproject.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/constructors.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/req_file.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/req_install.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/req_set.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/base.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/__pycache__/base.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/datetime.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/encoding.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/glibc.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/hashes.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/logging.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/misc.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/models.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/packaging.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/parallel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/typing.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/urls.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/typing.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/git.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/wheel_builder.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/locations.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/appdirs.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/certifi/core.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/langcyrillicmodel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/version.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/contextlib2.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/database.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/index.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/util.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/version.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/distro.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/codec.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/core.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/package_data.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/ipaddress.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/_version.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/version.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__about__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/build.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/check.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/bar.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/counter.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/pyparsing.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/api.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/auth.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/certs.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/compat.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/help.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/models.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/packages.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/structures.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/utils.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/retrying.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/six.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/common.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/decoder.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/encoder.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/ordered.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/tz.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/common.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/decoder.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/encoder.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/ordered.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/tz.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/securetransport.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/vendor.txt from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/appdirs.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/contextlib2.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/retrying.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/__init__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/__main__.py from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/__pycache__/__init__.cpython-38.pyc from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip/__pycache__/__main__.cpython-38.pyc from package python38-pip
Missing directory: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/ from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/direct_url.json from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/entry_points.txt from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/INSTALLER from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/LICENSE.txt from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/METADATA from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/RECORD from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/top_level.txt from package python38-pip
Missing file: /usr/lib/python3.8/site-packages/pip-20.2.2.dist-info/WHEEL from package python38-pip
Missing file: /usr/bin/pip3.8 from package python38-pip
python38-pip               20.2.2-1                        Incomplete
python38-setuptools        51.1.1-1                        OK
rcs                        5.10.0-1                        OK
rebase                     4.4.4-1                         OK
rsync                      3.2.3+20200903+git9f9240b-4     OK
ruby                       2.6.4-1                         OK
ruby-builder               3.2.3-1                         OK
ruby-did_you_mean          1.2.2-1                         OK
ruby-minitest              5.10.3-1                        OK
ruby-rake                  12.3.2-1                        OK
ruby-rdoc                  6.1.2-1                         OK
rubygems                   3.0.3-1                         OK
run                        1.3.4-2                         OK
screen                     4.8.0-1                         OK
sed                        4.4-1                           OK
tar                        1.32-2                          OK
terminfo                   6.1-1.20190727                  OK
terminfo-extra             6.1-1.20190727                  OK
tzcode                     2020f-1                         OK
tzdata                     2020f-1                         OK
unzip                      6.0-17                          OK
util-linux                 2.33.1-2                        OK
vim                        8.2.0486-1                      OK
vim-common                 8.2.0486-1                      OK
vim-minimal                8.2.0486-1                      OK
w32api-headers             8.0.0-1                         OK
w32api-runtime             8.0.0-1                         OK
wget                       1.21-1                          OK
which                      2.20-2                          OK
windows-default-manifest   6.4-1                           OK
xorg-cf-files              1.0.6-1                         OK
xxd                        8.2.0486-1                      OK
xz                         5.2.4-1                         OK
zip                        3.0-12                          OK
zlib0                      1.2.11-1                        OK
zstd                       1.4.8-1                         OK
Use -h to see help about each section

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-08 19:32     ` matthew patton
@ 2021-01-09  2:27       ` Andrey Repin
  2021-01-13  6:42         ` matthew patton
  0 siblings, 1 reply; 13+ messages in thread
From: Andrey Repin @ 2021-01-09  2:27 UTC (permalink / raw)
  To: matthew patton, cygwin

Greetings, matthew patton!

> Adam Dinwoodie wrote:
>> This looks like some sort of problem writing to disk to me.  Where are
>> you storing your Git repositories?  Is it on a regular NTFS disk

> plain NTFS (win10 exterprise) with hundreds of GB free. I blew away
> contents of /tmp just to make sure it wasn't something silly going on there.
> It's git pack/unpack aborting the read/write from the pipe which causes SSH
> to then close and tear down the connection. SSH client helpfully provides
> stats on how many packets transferred up/down.

> Achim Gratz wrote:
>> That seems to indicate some sort of behavioral based firewalling or IDS

> I thought it could be that too. Tried with and without corporate VPN. But
> it's worked for over a year with this config and nary a hiccup. And anyway
> if I immediately switch to my WSL (Ubuntu) window or Git-Bash and issue the
> Git commands they run perfectly. Yes my Cygwin and WSL and Git-Bash share
> the exact same repository directories.
> If I blow away the entire Cygwin installation (c:\cygwin64) and re-install
> Cygwin Git it will resume working and do so for a while. Like I mentioned
> previously re-installing Git does not solve the issue. And yes my SSH
> sessions while Git is "broken" continue to work like a champ, so it's not SSH.
> I've attached cygcheck. Before I even posted I went looking for strace() to
> no avail. I also even did a manual connection attempt like this:   

>>> ssh blah | git index-pack --stdin -v --fix-thin '--keep=fetch-pack 1011 on SOHO-GP4D633' --pack_header=2,1635

> and it would fail in the same manner as when it had been invoked "normally".

1. Try rebasing your Cygwin install.
2. See if your antivirus is interfering.


-- 
With best regards,
Andrey Repin
Saturday, January 9, 2021 5:22:54

Sorry for my terrible english...

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-09  2:27       ` Andrey Repin
@ 2021-01-13  6:42         ` matthew patton
  2021-01-14 19:20           ` matthew patton
  0 siblings, 1 reply; 13+ messages in thread
From: matthew patton @ 2021-01-13  6:42 UTC (permalink / raw)
  To: cygwin

Andrey wrote:> 1. Try rebasing your Cygwin install.
deleted cygwin64 and installed to \cygwin. Immediate failure. No apparent grace period like before.
> 2. See if your antivirus is interfering.
Had corporate IT put me in a special exclusion group (supposedly) to no avail. See #1

    On Friday, January 8, 2021, 09:35:03 PM EST, Andrey Repin <anrdaemon@yandex.ru> wrote:  
 
 Greetings, matthew patton!

> Adam Dinwoodie wrote:
>> This looks like some sort of problem writing to disk to me.  Where are
>> you storing your Git repositories?  Is it on a regular NTFS disk

> plain NTFS (win10 exterprise) with hundreds of GB free. I blew away
> contents of /tmp just to make sure it wasn't something silly going on there.
> It's git pack/unpack aborting the read/write from the pipe which causes SSH
> to then close and tear down the connection. SSH client helpfully provides
> stats on how many packets transferred up/down.

> Achim Gratz wrote:
>> That seems to indicate some sort of behavioral based firewalling or IDS

> I thought it could be that too. Tried with and without corporate VPN. But
> it's worked for over a year with this config and nary a hiccup. And anyway
> if I immediately switch to my WSL (Ubuntu) window or Git-Bash and issue the
> Git commands they run perfectly. Yes my Cygwin and WSL and Git-Bash share
> the exact same repository directories.
> If I blow away the entire Cygwin installation (c:\cygwin64) and re-install
> Cygwin Git it will resume working and do so for a while. Like I mentioned
> previously re-installing Git does not solve the issue. And yes my SSH
> sessions while Git is "broken" continue to work like a champ, so it's not SSH.
> I've attached cygcheck. Before I even posted I went looking for strace() to
> no avail. I also even did a manual connection attempt like this:   

>>> ssh blah | git index-pack --stdin -v --fix-thin '--keep=fetch-pack 1011 on SOHO-GP4D633' --pack_header=2,1635

> and it would fail in the same manner as when it had been invoked "normally".

1. Try rebasing your Cygwin install.
2. See if your antivirus is interfering.


-- 
With best regards,
Andrey Repin
Saturday, January 9, 2021 5:22:54

Sorry for my terrible english...  

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-13  6:42         ` matthew patton
@ 2021-01-14 19:20           ` matthew patton
  2021-01-14 22:27             ` matthew patton
  2021-01-14 22:42             ` Brian Inglis
  0 siblings, 2 replies; 13+ messages in thread
From: matthew patton @ 2021-01-14 19:20 UTC (permalink / raw)
  To: cygwin

ok, so can someone do the following on their installation? I've narrowed it down to the invocation of git-core/git.exe or any of the other git-core/git* binaries. I get a Windows dialog box no less, with "The application was unable to start correctly".
100(1) $ strace /usr/libexec/git-core/git.exe--- Process 14916 created--- Process 14916 loaded C:\Windows\System32\ntdll.dll at 00007ffda07c0000--- Process 14916 loaded C:\Windows\System32\kernel32.dll at 00007ffd9e870000--- Process 14916 loaded C:\Windows\System32\KernelBase.dll at 00007ffd9dbf0000--- Process 14916 thread 14476 created--- Process 14916 thread 16872 created--- Process 14916 thread 10260 created--- Process 14916 thread 12992 exited with status 0xc0000279--- Process 14916 thread 10260 exited with status 0xc0000279--- Process 14916 thread 16872 exited with status 0xc0000279--- Process 14916 exited with status 0xc0000279
LDD for Cygwin git102(1) $ ldd /usr/libexec/git-core/git.exe        ntdll.dll => /cygdrive/c/WINDOWS/SYSTEM32/ntdll.dll (0x7ffda07c0000)        KERNEL32.DLL => /cygdrive/c/WINDOWS/System32/KERNEL32.DLL (0x7ffd9e870000)        KERNELBASE.dll => /cygdrive/c/WINDOWS/System32/KERNELBASE.dll (0x7ffd9dbf0000)



The same thing in Git-Bash results in:--- Process 17124 created--- Process 17124 loaded C:\Windows\System32\ntdll.dll at 00007ffda07c0000--- Process 17124 loaded C:\Windows\System32\kernel32.dll at 00007ffd9e870000--- Process 17124 loaded C:\Windows\System32\KernelBase.dll at 00007ffd9dbf0000--- Process 17124 thread 15280 created--- Process 17124 thread 18192 created--- Process 17124 loaded C:\Windows\System32\advapi32.dll at 00007ffda0070000--- Process 17124 thread 8520 created--- Process 17124 loaded C:\Windows\System32\msvcrt.dll at 00007ffd9eb40000--- Process 17124 loaded C:\Windows\System32\sechost.dll at 00007ffd9e9e0000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libiconv-2.dll at 00007ffd68d80000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libpcre2-8-0.dll at 0000000064380000--- Process 17124 loaded C:\Windows\System32\rpcrt4.dll at 00007ffd9f4e0000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libintl-8.dll at 00007ffd89600000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\zlib1.dll at 00007ffd895d0000--- Process 17124 loaded C:\Windows\System32\user32.dll at 00007ffd9fe50000--- Process 17124 loaded C:\Windows\System32\win32u.dll at 00007ffd9dbc0000--- Process 17124 loaded C:\Windows\System32\gdi32.dll at 00007ffda04c0000--- Process 17124 loaded C:\Windows\System32\gdi32full.dll at 00007ffd9e630000--- Process 17124 loaded C:\Windows\System32\msvcp_win.dll at 00007ffd9e7d0000--- Process 17124 loaded C:\Windows\System32\ucrtbase.dll at 00007ffd9d730000--- Process 17124 loaded C:\Windows\System32\ws2_32.dll at 00007ffd9fde0000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libssp-0.dll at 00007ffd8d120000--- Process 17124 loaded C:\Windows\System32\imm32.dll at 00007ffd9f600000--- Process 17124 loaded C:\Windows\System32\cryptsp.dll at 00007ffd9d8c0000--- Process 17124 loaded C:\Windows\System32\rsaenh.dll at 00007ffd9c710000--- Process 17124 loaded C:\Windows\System32\bcrypt.dll at 00007ffd9d8e0000--- Process 17124 loaded C:\Windows\System32\cryptbase.dll at 00007ffd9cf80000--- Process 17124 loaded C:\Windows\System32\bcryptprimitives.dll at 00007ffd9d830000--- Process 17124 thread 18192 exited with status 0x1--- Process 17124 thread 8520 exited with status 0x1--- Process 17124 thread 15280 exited with status 0x1--- Process 17124 exited with status 0x1
LDD for Git-Bash76(1) $ ldd /mingw64/libexec/git-core/git.exe        ntdll.dll => /c/WINDOWS/SYSTEM32/ntdll.dll (0x7ffda07c0000)        KERNEL32.DLL => /c/WINDOWS/System32/KERNEL32.DLL (0x7ffd9e870000)        KERNELBASE.dll => /c/WINDOWS/System32/KERNELBASE.dll (0x7ffd9dbf0000)        ADVAPI32.dll => /c/WINDOWS/System32/ADVAPI32.dll (0x7ffda0070000)        msvcrt.dll => /c/WINDOWS/System32/msvcrt.dll (0x7ffd9eb40000)        libpcre2-8-0.dll => /mingw64/libexec/git-core/libpcre2-8-0.dll (0x64380000)        libintl-8.dll => /mingw64/libexec/git-core/libintl-8.dll (0x7ffd9bd80000)        sechost.dll => /c/WINDOWS/System32/sechost.dll (0x7ffd9e9e0000)        libiconv-2.dll => /mingw64/libexec/git-core/libiconv-2.dll (0x7ffd66600000)        RPCRT4.dll => /c/WINDOWS/System32/RPCRT4.dll (0x7ffd9f4e0000)        zlib1.dll => /mingw64/libexec/git-core/zlib1.dll (0x7ffd69610000)        USER32.dll => /c/WINDOWS/System32/USER32.dll (0x7ffd9fe50000)        win32u.dll => /c/WINDOWS/System32/win32u.dll (0x7ffd9dbc0000)        GDI32.dll => /c/WINDOWS/System32/GDI32.dll (0x7ffda04c0000)        gdi32full.dll => /c/WINDOWS/System32/gdi32full.dll (0x7ffd9e630000)        msvcp_win.dll => /c/WINDOWS/System32/msvcp_win.dll (0x7ffd9e7d0000)        ucrtbase.dll => /c/WINDOWS/System32/ucrtbase.dll (0x7ffd9d730000)        WS2_32.dll => /c/WINDOWS/System32/WS2_32.dll (0x7ffd9fde0000)        libssp-0.dll => /mingw64/libexec/git-core/libssp-0.dll (0x7ffd9ad00000)

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-14 19:20           ` matthew patton
@ 2021-01-14 22:27             ` matthew patton
  2021-01-14 23:48               ` Ken Brown
  2021-01-14 22:42             ` Brian Inglis
  1 sibling, 1 reply; 13+ messages in thread
From: matthew patton @ 2021-01-14 22:27 UTC (permalink / raw)
  To: cygwin

ring a bell with anyone?
C:\Users\mp1116\Downloads>Err_6.4.5.exe 0xc0000279# for hex 0xc0000279 / decimal -1073741191  STATUS_IO_REPARSE_TAG_NOT_HANDLED                              ntstatus.h# The layered file system driver for this IO tag did not# handle it when needed.# as an HRESULT: Severity: FAILURE (1), FACILITY_NULL (0x0), Code 0x279# for hex 0x279 / decimal 633


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: mysterious GIT failure
  2021-01-14 19:20           ` matthew patton
  2021-01-14 22:27             ` matthew patton
@ 2021-01-14 22:42             ` Brian Inglis
  1 sibling, 0 replies; 13+ messages in thread
From: Brian Inglis @ 2021-01-14 22:42 UTC (permalink / raw)
  To: cygwin

Could you please figure out how to send your logs as utf8 plain text attachments 
or otherwise send as verbatim utf8 plain text with line breaks, as your logs 
come across mainly as wrapped single lines in a base64 encoded blob, which few 
will bother to try reading.

On 2021-01-14 12:20, matthew patton via Cygwin wrote:
> ok, so can someone do the following on their installation? I've narrowed it down to the invocation of git-core/git.exe or any of the other git-core/git* binaries. I get a Windows dialog box no less, with "The application was unable to start correctly".
> 100(1) $ strace /usr/libexec/git-core/git.exe--- Process 14916 created--- Process 14916 loaded C:\Windows\System32\ntdll.dll at 00007ffda07c0000--- Process 14916 loaded C:\Windows\System32\kernel32.dll at 00007ffd9e870000--- Process 14916 loaded C:\Windows\System32\KernelBase.dll at 00007ffd9dbf0000--- Process 14916 thread 14476 created--- Process 14916 thread 16872 created--- Process 14916 thread 10260 created--- Process 14916 thread 12992 exited with status 0xc0000279--- Process 14916 thread 10260 exited with status 0xc0000279--- Process 14916 thread 16872 exited with status 0xc0000279--- Process 14916 exited with status 0xc0000279
> LDD for Cygwin git102(1) $ ldd /usr/libexec/git-core/git.exe        ntdll.dll => /cygdrive/c/WINDOWS/SYSTEM32/ntdll.dll (0x7ffda07c0000)        KERNEL32.DLL => /cygdrive/c/WINDOWS/System32/KERNEL32.DLL (0x7ffd9e870000)        KERNELBASE.dll => /cygdrive/c/WINDOWS/System32/KERNELBASE.dll (0x7ffd9dbf0000)
> 
> 
> 
> The same thing in Git-Bash results in:--- Process 17124 created--- Process 17124 loaded C:\Windows\System32\ntdll.dll at 00007ffda07c0000--- Process 17124 loaded C:\Windows\System32\kernel32.dll at 00007ffd9e870000--- Process 17124 loaded C:\Windows\System32\KernelBase.dll at 00007ffd9dbf0000--- Process 17124 thread 15280 created--- Process 17124 thread 18192 created--- Process 17124 loaded C:\Windows\System32\advapi32.dll at 00007ffda0070000--- Process 17124 thread 8520 created--- Process 17124 loaded C:\Windows\System32\msvcrt.dll at 00007ffd9eb40000--- Process 17124 loaded C:\Windows\System32\sechost.dll at 00007ffd9e9e0000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libiconv-2.dll at 00007ffd68d80000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libpcre2-8-0.dll at 0000000064380000--- Process 17124 loaded C:\Windows\System32\rpcrt4.dll at 00007ffd9f4e0000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libintl-8.dll at 00007ffd89600000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\zlib1.dll at 00007ffd895d0000--- Process 17124 loaded C:\Windows\System32\user32.dll at 00007ffd9fe50000--- Process 17124 loaded C:\Windows\System32\win32u.dll at 00007ffd9dbc0000--- Process 17124 loaded C:\Windows\System32\gdi32.dll at 00007ffda04c0000--- Process 17124 loaded C:\Windows\System32\gdi32full.dll at 00007ffd9e630000--- Process 17124 loaded C:\Windows\System32\msvcp_win.dll at 00007ffd9e7d0000--- Process 17124 loaded C:\Windows\System32\ucrtbase.dll at 00007ffd9d730000--- Process 17124 loaded C:\Windows\System32\ws2_32.dll at 00007ffd9fde0000--- Process 17124 loaded C:\Program Files\Git\mingw64\bin\libssp-0.dll at 00007ffd8d120000--- Process 17124 loaded C:\Windows\System32\imm32.dll at 00007ffd9f600000--- Process 17124 loaded C:\Windows\System32\cryptsp.dll at 00007ffd9d8c0000--- Process 17124 loaded C:\Windows\System32\rsaenh.dll at 00007ffd9c710000--- Process 17124 loaded C:\Windows\System32\bcrypt.dll at 00007ffd9d8e0000--- Process 17124 loaded C:\Windows\System32\cryptbase.dll at 00007ffd9cf80000--- Process 17124 loaded C:\Windows\System32\bcryptprimitives.dll at 00007ffd9d830000--- Process 17124 thread 18192 exited with status 0x1--- Process 17124 thread 8520 exited with status 0x1--- Process 17124 thread 15280 exited with status 0x1--- Process 17124 exited with status 0x1
> LDD for Git-Bash76(1) $ ldd /mingw64/libexec/git-core/git.exe        ntdll.dll => /c/WINDOWS/SYSTEM32/ntdll.dll (0x7ffda07c0000)        KERNEL32.DLL => /c/WINDOWS/System32/KERNEL32.DLL (0x7ffd9e870000)        KERNELBASE.dll => /c/WINDOWS/System32/KERNELBASE.dll (0x7ffd9dbf0000)        ADVAPI32.dll => /c/WINDOWS/System32/ADVAPI32.dll (0x7ffda0070000)        msvcrt.dll => /c/WINDOWS/System32/msvcrt.dll (0x7ffd9eb40000)        libpcre2-8-0.dll => /mingw64/libexec/git-core/libpcre2-8-0.dll (0x64380000)        libintl-8.dll => /mingw64/libexec/git-core/libintl-8.dll (0x7ffd9bd80000)        sechost.dll => /c/WINDOWS/System32/sechost.dll (0x7ffd9e9e0000)        libiconv-2.dll => /mingw64/libexec/git-core/libiconv-2.dll (0x7ffd66600000)        RPCRT4.dll => /c/WINDOWS/System32/RPCRT4.dll (0x7ffd9f4e0000)        zlib1.dll => /mingw64/libexec/git-core/zlib1.dll (0x7ffd69610000)        USER32.dll => /c/WINDOWS/System32/USER32.dll (0x7ffd9fe50000)        win32u.dll => /c/WINDOWS/System32/win32u.dll (0x7ffd9dbc0000)        GDI32.dll => /c/WINDOWS/System32/GDI32.dll (0x7ffda04c0000)        gdi32full.dll => /c/WINDOWS/System32/gdi32full.dll (0x7ffd9e630000)        msvcp_win.dll => /c/WINDOWS/System32/msvcp_win.dll (0x7ffd9e7d0000)        ucrtbase.dll => /c/WINDOWS/System32/ucrtbase.dll (0x7ffd9d730000)        WS2_32.dll => /c/WINDOWS/System32/WS2_32.dll (0x7ffd9fde0000)        libssp-0.dll => /mingw64/libexec/git-core/libssp-0.dll (0x7ffd9ad00000)

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

This email may be disturbing to some readers as it contains
too much technical detail. Reader discretion is advised.
[Data in binary units and prefixes, physical quantities in SI.]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-14 22:27             ` matthew patton
@ 2021-01-14 23:48               ` Ken Brown
  2021-01-15 16:36                 ` matthew patton
  0 siblings, 1 reply; 13+ messages in thread
From: Ken Brown @ 2021-01-14 23:48 UTC (permalink / raw)
  To: cygwin

On 1/14/2021 5:27 PM, matthew patton via Cygwin wrote:
> ring a bell with anyone?
> C:\Users\mp1116\Downloads>Err_6.4.5.exe 0xc0000279# for hex 0xc0000279 / decimal -1073741191  STATUS_IO_REPARSE_TAG_NOT_HANDLED                              ntstatus.h# The layered file system driver for this IO tag did not# handle it when needed.# as an HRESULT: Severity: FAILURE (1), FACILITY_NULL (0x0), Code 0x279# for hex 0x279 / decimal 633

Do you by any chance have symlinks in your PATH?  There was a problem reported 
in early December in which STATUS_IO_REPARSE_TAG_NOT_HANDLED would sometimes 
occur when there was a symlink in PATH:

   https://cygwin.com/pipermail/cygwin/2020-December/246938.html

This was fixed.  You can test whether the same fix works for you by installing 
the latest snapshot from

   https://cygwin.com/snapshots/

Ken

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: misterious GIT failure
  2021-01-14 23:48               ` Ken Brown
@ 2021-01-15 16:36                 ` matthew patton
  2021-01-15 17:09                   ` mysterious " Brian Inglis
  0 siblings, 1 reply; 13+ messages in thread
From: matthew patton @ 2021-01-15 16:36 UTC (permalink / raw)
  To: cygwin

Ken Brown wrote:> Do you by any chance have symlinks in your PATH?
Yes, the first and 3rd entries are symlinks. I've had these symlinks in my PATH for years.
/home/MP1116/.aws/YYY/bin:/home/MP1116/bin -> .WPHOME/bin/

.aws -> .WPHOME/.aws/.WPHOME -> Dropbox/Work_Projects/XXX
#/etc/fstabC:/Users /home none binary,user 0 0

>  There was a problem reported in early December in which STATUS_IO_REPARSE_TAG_NOT_HANDLED > would sometimes occur when there was a symlink in PATH:

This KB was released 8 December. I installed it on Dec 23 and my git failures started after that date.https://support.microsoft.com/en-us/help/4592449/windows-10-update-kb4592449


  

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: mysterious GIT failure
  2021-01-15 16:36                 ` matthew patton
@ 2021-01-15 17:09                   ` Brian Inglis
  2021-01-15 17:22                     ` matthew patton
  0 siblings, 1 reply; 13+ messages in thread
From: Brian Inglis @ 2021-01-15 17:09 UTC (permalink / raw)
  To: cygwin

On 2021-01-15 09:36, matthew patton via Cygwin wrote:
> Ken Brown wrote:> Do you by any chance have symlinks in your PATH?
> Yes, the first and 3rd entries are symlinks.
> I've had these symlinks in my PATH for years.
> /home/MP1116/.aws/YYY/bin:/home/MP1116/bin -> .WPHOME/bin/
> 
> .aws -> .WPHOME/.aws/.WPHOME -> Dropbox/Work_Projects/XXX
> #/etc/fstabC:/Users /home none binary,user 0 0
> 
>>    There was a problem reported in early December in which STATUS_IO_REPARSE_TAG_NOT_HANDLED > would sometimes occur when there was a symlink in PATH:

Given that you have the same symptom, it is possible that Git-Bash or something 
else you are running in Windows is creating symlinks somewhere, which Cygwin is 
attempting to read while resolving some path search, or opening some directory 
or file entry, so it would seem advisable to download and install the latest 
snapshot DLL.
You could test this by trying to operate with only minimal Cygwin path /usr/bin: 
/bin and git clone into Cygwin /tmp/ or /usr/tmp/ as long as they are not 
mounted on non-Cygwin directories like your /home is, where Windows programs are 
likely to have an impact.

> This KB was released 8 December. I installed it on Dec 23 and my git failures
> started after that date. 
> <https://support.microsoft.com/en-us/help/4592449/windows-10-update-kb4592449>
Known issue with that update is loss of user and system certs - hopefully only 
from Windows cert store affecting only Windows apps - but could that impact 
anything you are using?

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

This email may be disturbing to some readers as it contains
too much technical detail. Reader discretion is advised.
[Data in binary units and prefixes, physical quantities in SI.]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: mysterious GIT failure
  2021-01-15 17:09                   ` mysterious " Brian Inglis
@ 2021-01-15 17:22                     ` matthew patton
  0 siblings, 0 replies; 13+ messages in thread
From: matthew patton @ 2021-01-15 17:22 UTC (permalink / raw)
  To: cygwin

On Friday, January 15, 2021, 12:09:30 PM EST, Brian Inglis <brian.inglis@systematicsw.ab.ca> wrote:
 
 > Given that you have the same symptom, it is possible that Git-Bash or something > else you are running in Windows is creating symlinks somewhere, 
I only installed Git-Bash out of desperation and it's msys.dll (fork of cygwin.dll) is v 3.1.7 and dated late December after Cygwin team published this patch. https://sourceware.org/git/?p=newlib-cygwin.git;a=commit;h=aec6479820fee5f71d50930bf0dde2bbf386bd4b
  

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2021-01-15 17:22 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <638366959.5124927.1610072027608.ref@mail.yahoo.com>
2021-01-08  2:13 ` misterious GIT failure matthew patton
2021-01-08 10:35   ` Adam Dinwoodie
2021-01-08 16:02   ` Achim Gratz
2021-01-08 19:32     ` matthew patton
2021-01-09  2:27       ` Andrey Repin
2021-01-13  6:42         ` matthew patton
2021-01-14 19:20           ` matthew patton
2021-01-14 22:27             ` matthew patton
2021-01-14 23:48               ` Ken Brown
2021-01-15 16:36                 ` matthew patton
2021-01-15 17:09                   ` mysterious " Brian Inglis
2021-01-15 17:22                     ` matthew patton
2021-01-14 22:42             ` Brian Inglis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).