From tcaswell at gmail.com Fri Mar 1 23:48:59 2019 From: tcaswell at gmail.com (Thomas Caswell) Date: Fri, 1 Mar 2019 23:48:59 -0500 Subject: [Matplotlib-users] REL: Matplotlib 2.2.4 and 3.0.3 Message-ID: Folks, As we get ready for 3.1 (aiming for mid-to-late March), we have tagged 2.2.4 and 3.0.3 bug-fix releases. Wheels for all three platforms are on pypi for both releases. 3.0.3: The third and last planned bug-fix release of the 3.0 series * fix several possible memory leaks * documentation fixes 2.2.4 The forth bug-fix release of the v2.2 LTS series. - Fix a memory leak with PySide2. - rename :math: sphinx directive to :mathmpl: to work with sphinx > 1.8. Both versions are now available if sphinx < 1.8. - avoids numpy deprecation warnings. - fixes to tests to work with pytest >= 3.8 and the minimum is now pytest >= 3.6. As a reminder, the 2.2 LTS series will continue to support Python 2.7 and get critical bug-fixes until the end of 2019. In both cases jquery-ui is no longer bundled in git repo and is downloaded during the install or sdist process. If you are installing from pypi the files will be included, but if you are installing from git you will need internet access the first time you run `pip install .`. The install process tries to cache the files and will not need internel access on future installations. I big thank you to everyone who worked on these releases done. Paul Ivanov was co release manager with me on both releases. Tom -- Thomas Caswell tcaswell at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From balducci at units.it Mon Mar 4 09:31:48 2019 From: balducci at units.it (balducci at units.it) Date: Mon, 04 Mar 2019 15:31:48 +0100 Subject: [Matplotlib-users] 3.0.3: error: Failed to download jquery-ui Message-ID: <11964.1551709932@dschgrazlin2.units.it> hello apologies: this isn't actually directly related to matplotlib, but I hope someone on this list will be able to give me some clue Installation of latest 3.0.3 (on linux) fails for me with: ----8<---- error: Failed to download jquery-ui. Please download https://jqueryui.com/resources/download/jquery-ui-1.12.1.zip and extract it to build/bdist.linux-x86_64/egg/matplotlib/backends/web_backend/. ---->8---- AFAICS, the actual download is done in setupext.py, via a call to Request (from urllib or urllib2); Unfortunately (for me) I don't speak python; hence the help request: is there any flag I could raise in setupext.py or somewhere else to get debugging output from Request that can help me to understand what is going on? I suspect some problem with certificates or the like; As a matter of fact, if I manually download the jquery-ui-1.12.1 zip and redefine url to "file:/home/balducci/tmp/install-us-d/matplotlib-3.0.2.d/jquery-ui-1.12.1.zip" in setup.py, everything works fine... I have tried some recipes found on the web to no avail, eg: httplib.HTTPConnection.debuglevel = 1 I thank you very much in advance for any help ciao -gabriele From peter.chiu at stfc.ac.uk Thu Mar 7 06:36:09 2019 From: peter.chiu at stfc.ac.uk (Peter Chiu - UKRI STFC) Date: Thu, 7 Mar 2019 11:36:09 +0000 Subject: [Matplotlib-users] Matplotlib Installation Question on Centos 7 Message-ID: Hello, This is a novice question and hopefully someone can advise. In order to support a software package for the LOFAR project, I am trying to install Matplotlib on a centos 7 system: python setup.py build_ext --include-dirs=/usr/local/lofar3_2/local/release/include it complains at the point: g++ -pthread -shared build/temp.linux-x86_64-2.7/src/_ttconv.o \ build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt.o \ build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt2.o \ build/temp.linux-x86_64-2.7/ttconv/ttutil.o \ -L/usr/local/lib -L/usr/lib -L/usr/local/lib64 -L/usr/lib64 \ -L/usr/local/lofar3_2/local/release/lib -lpython2.7 \ -o build/lib.linux-x86_64-2.7/matplotlib/ttconv.so /usr/local/lib/libpython2.7.a(posixmodule.o): In function `posix_tmpnam': /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7575: warning: the use of `tmpnam_r' is dangerous, better use `mkstemp' /usr/local/lib/libpython2.7.a(posixmodule.o): In function `posix_tempnam': /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7522: warning: the use of `tempnam' is dangerous, better use `mkstemp' /usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): \ relocation R_X86_64_32 against `.rodata.str1.8' can not be used when making a shared object; recompile with -fPIC ... /usr/bin/ld: /usr/local/lib/libpython2.7.a(getcompiler.o): \ relocation R_X86_64_32 against `.rodata.str1.8' can not be used when making a shared object; recompile with -fPIC /usr/bin/ld: final link failed: Nonrepresentable section on output collect2: error: ld returned 1 exit status error: command 'g++' failed with exit status 1 Prior to that, I have already installed a local version of python in a separate folder. If I then manually move the switch -L/usr/local/lofar3_2/local/release/lib \ before -L/usr/local/lib it will then pick up the local library, and it will compile okay. So my question is how to specify a local version of python library to be used as preference as part of the python setup.py build_ext command. I have tried the switch -library-dirs=..., --library=, and -rpath= but none of them will make my local python library in preference to that under /usr/local/lib. Much grateful for any advice can be given. Regards, Peter -------------- next part -------------- An HTML attachment was scrubbed... URL: From jslavin at cfa.harvard.edu Thu Mar 7 12:13:09 2019 From: jslavin at cfa.harvard.edu (Slavin, Jonathan) Date: Thu, 7 Mar 2019 12:13:09 -0500 Subject: [Matplotlib-users] Matplotlib Installation Question on Centos 7 In-Reply-To: References: Message-ID: Hi Peter, I'm working on a CentOS 7 system. I can't answer your question directly, but I would advise installing anaconda. It makes all this stuff much simpler and keeps your local environment cleanly separated from the system wide one. Regards, Jon > Date: Thu, 7 Mar 2019 11:36:09 +0000 > From: Peter Chiu - UKRI STFC > To: "matplotlib-users at python.org" > Subject: [Matplotlib-users] Matplotlib Installation Question on Centos > 7 > Message-ID: > Content-Type: text/plain; charset="us-ascii" > > Hello, > > This is a novice question and hopefully someone can advise. > > In order to support a software package for the LOFAR project, > I am trying to install Matplotlib on a centos 7 system: > > python setup.py build_ext > --include-dirs=/usr/local/lofar3_2/local/release/include > > it complains at the point: > > g++ -pthread -shared build/temp.linux-x86_64-2.7/src/_ttconv.o \ > build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt.o \ > build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt2.o \ > build/temp.linux-x86_64-2.7/ttconv/ttutil.o \ > -L/usr/local/lib -L/usr/lib -L/usr/local/lib64 -L/usr/lib64 \ > -L/usr/local/lofar3_2/local/release/lib -lpython2.7 \ > -o build/lib.linux-x86_64-2.7/matplotlib/ttconv.so > /usr/local/lib/libpython2.7.a(posixmodule.o): In function `posix_tmpnam': > /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7575: > warning: > the use of `tmpnam_r' is dangerous, better use `mkstemp' > /usr/local/lib/libpython2.7.a(posixmodule.o): In function `posix_tempnam': > /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7522: > warning: > the use of `tempnam' is dangerous, better use `mkstemp' > /usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): \ > relocation R_X86_64_32 against `.rodata.str1.8' can not be used when > making a shared object; recompile with -fPIC > ... > /usr/bin/ld: /usr/local/lib/libpython2.7.a(getcompiler.o): \ > relocation R_X86_64_32 against `.rodata.str1.8' can not be used when > making a shared object; recompile with -fPIC > /usr/bin/ld: final link failed: Nonrepresentable section on output > collect2: error: ld returned 1 exit status > error: command 'g++' failed with exit status 1 > > Prior to that, I have already installed a local version of python in a > separate folder. > If I then manually move the switch > > -L/usr/local/lofar3_2/local/release/lib \ > > before > > -L/usr/local/lib > > it will then pick up the local library, and it will compile okay. > > So my question is how to specify a local version of python library > to be used as preference as part of the python setup.py build_ext command. > > I have tried the switch -library-dirs=..., --library=, and -rpath= > but none of them will make my local python library in preference > to that under /usr/local/lib. > > Much grateful for any advice can be given. > > Regards, > > Peter > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/matplotlib-users/attachments/20190307/dda2ef24/attachment-0001.html > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > > > ------------------------------ > > End of Matplotlib-users Digest, Vol 44, Issue 3 > *********************************************** > -- Jonathan D. Slavin Astrophysicist - High Energy Astrophysics Division Center for Astrophysics | Harvard & Smithsonian Office: (617) 496-7981 | Cell: (781) 363-0035 60 Garden Street | MS 83 | Cambridge, MA 02138 -------------- next part -------------- An HTML attachment was scrubbed... URL: From stefano.gragnani at gmail.com Tue Mar 12 13:36:01 2019 From: stefano.gragnani at gmail.com (Stefano Gragnani) Date: Tue, 12 Mar 2019 18:36:01 +0100 Subject: [Matplotlib-users] LaTeX rendering Message-ID: <2BD8FBD9-C8B4-4807-868F-6932AC49246E@gmail.com> Hi, My system is a MacBook Pro (i9 processor) with macOS Mojave Version 10.14.3, I have installed Matplotlib version 3.0.2 and what I want to do is use an external TeX renderer but I always get: FileNotFoundError: [Errno 2] No such file or directory: 'latex': ?latex?. I get the aforementioned message, for example, trying to execute the following code: """ import numpy as np import matplotlib.pyplot as plt # Example data t = np.arange(0.0, 1.0 + 0.01, 0.01) s = np.cos(4 * np.pi * t) + 2 plt.rc('text', usetex=True) plt.rc('font', family='serif') plt.plot(t, s) plt.xlabel(r'\textbf{time} (s)') plt.ylabel(r'\textit{voltage} (mV)',fontsize=16) plt.title(r"\TeX\ is Number " r"$\displaystyle\sum_{n=1}^\infty\frac{-e^{i\pi}}{2^n}$!", fontsize=16, color='gray') # Make room for the ridiculously large title. plt.subplots_adjust(top=0.8) plt.savefig('tex_demo') plt.show() I have installed MacTex and also MiKTek with their installers and Ghostscript with Home-brew. I use Spyder installed with Conda. Using Mathtext everything is alright. In which directory Matplotlib expect to find the directory ?latex?? Thank you all Stefano From jerzy.karczmarczuk at unicaen.fr Tue Mar 12 16:15:47 2019 From: jerzy.karczmarczuk at unicaen.fr (Jerzy Karczmarczuk) Date: Tue, 12 Mar 2019 21:15:47 +0100 Subject: [Matplotlib-users] LaTeX rendering In-Reply-To: <2BD8FBD9-C8B4-4807-868F-6932AC49246E@gmail.com> References: <2BD8FBD9-C8B4-4807-868F-6932AC49246E@gmail.com> Message-ID: Hello. Le 12/03/2019 ? 18:36, Stefano Gragnani a ?crit?: > I want to do is use an external TeX renderer but I always get: FileNotFoundError: [Errno 2] No such file or directory: 'latex': ?latex?. > ... > > I have installed MacTex and also MiKTek with their installers and Ghostscript with Home-brew. I use Spyder installed with Conda. > Using Mathtext everything is alright. > In which directory Matplotlib expect to find the directory ?latex?? I use Windows, so my answer may not be relevant, but MiKTeX installation does not necessarily update your path,? so check that, it may be as simple as that. What happens if you launch latex in a terminal? (In Win10 latex.exe is where you put it, e.g.,? in C:\MiKTeX\miktex\bin\x64\) Good luck Jerzy Karczmarczuk /Caen, France/ From tcaswell at gmail.com Tue Mar 12 18:26:37 2019 From: tcaswell at gmail.com (Thomas Caswell) Date: Tue, 12 Mar 2019 18:26:37 -0400 Subject: [Matplotlib-users] LaTeX rendering In-Reply-To: References: <2BD8FBD9-C8B4-4807-868F-6932AC49246E@gmail.com> Message-ID: I think Jerzy is correct, we are expecting `latex` to be on the path. Does `latex` work at the shell in the same context as you are running python? Tom On Tue, Mar 12, 2019 at 4:23 PM Jerzy Karczmarczuk < jerzy.karczmarczuk at unicaen.fr> wrote: > Hello. > > Le 12/03/2019 ? 18:36, Stefano Gragnani a ?crit : > > I want to do is use an external TeX renderer but I always get: > FileNotFoundError: [Errno 2] No such file or directory: 'latex': ?latex?. > > ... > > > > I have installed MacTex and also MiKTek with their installers and > Ghostscript with Home-brew. I use Spyder installed with Conda. > > Using Mathtext everything is alright. > > In which directory Matplotlib expect to find the directory ?latex?? > > I use Windows, so my answer may not be relevant, but MiKTeX installation > does not necessarily update your path, so check that, it may be as > simple as that. What happens if you launch latex in a terminal? > > (In Win10 latex.exe is where you put it, e.g., in > C:\MiKTeX\miktex\bin\x64\) > > Good luck > Jerzy Karczmarczuk > /Caen, France/ > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -- Thomas Caswell tcaswell at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tcaswell at gmail.com Wed Mar 13 09:23:10 2019 From: tcaswell at gmail.com (Thomas Caswell) Date: Wed, 13 Mar 2019 09:23:10 -0400 Subject: [Matplotlib-users] Matplotlib Installation Question on Centos 7 In-Reply-To: References: Message-ID: Can you use the local version of python to run setup.py? It is not clear to me what version of python you are compiling with. Does the patch in https://github.com/matplotlib/matplotlib/pull/13064 help? Failing that, as it looks like you are building matplotlib as part of an integrated enviroment, I suggest patching `setup.py` and `setup_ext.py` until it works... Tom On Thu, Mar 7, 2019 at 12:13 PM Slavin, Jonathan wrote: > Hi Peter, > > I'm working on a CentOS 7 system. I can't answer your question directly, > but I would advise installing anaconda. It makes all this stuff much > simpler and keeps your local environment cleanly separated from the system > wide one. > > Regards, > Jon > > >> Date: Thu, 7 Mar 2019 11:36:09 +0000 >> From: Peter Chiu - UKRI STFC >> To: "matplotlib-users at python.org" >> Subject: [Matplotlib-users] Matplotlib Installation Question on Centos >> 7 >> Message-ID: >> Content-Type: text/plain; charset="us-ascii" >> >> Hello, >> >> This is a novice question and hopefully someone can advise. >> >> In order to support a software package for the LOFAR project, >> I am trying to install Matplotlib on a centos 7 system: >> >> python setup.py build_ext >> --include-dirs=/usr/local/lofar3_2/local/release/include >> >> it complains at the point: >> >> g++ -pthread -shared build/temp.linux-x86_64-2.7/src/_ttconv.o \ >> build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt.o \ >> build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt2.o \ >> build/temp.linux-x86_64-2.7/ttconv/ttutil.o \ >> -L/usr/local/lib -L/usr/lib -L/usr/local/lib64 -L/usr/lib64 \ >> -L/usr/local/lofar3_2/local/release/lib -lpython2.7 \ >> -o build/lib.linux-x86_64-2.7/matplotlib/ttconv.so >> /usr/local/lib/libpython2.7.a(posixmodule.o): In function `posix_tmpnam': >> /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7575: >> warning: >> the use of `tmpnam_r' is dangerous, better use `mkstemp' >> /usr/local/lib/libpython2.7.a(posixmodule.o): In function `posix_tempnam': >> /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7522: >> warning: >> the use of `tempnam' is dangerous, better use `mkstemp' >> /usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): \ >> relocation R_X86_64_32 against `.rodata.str1.8' can not be used when >> making a shared object; recompile with -fPIC >> ... >> /usr/bin/ld: /usr/local/lib/libpython2.7.a(getcompiler.o): \ >> relocation R_X86_64_32 against `.rodata.str1.8' can not be used when >> making a shared object; recompile with -fPIC >> /usr/bin/ld: final link failed: Nonrepresentable section on output >> collect2: error: ld returned 1 exit status >> error: command 'g++' failed with exit status 1 >> >> Prior to that, I have already installed a local version of python in a >> separate folder. >> If I then manually move the switch >> >> -L/usr/local/lofar3_2/local/release/lib \ >> >> before >> >> -L/usr/local/lib >> >> it will then pick up the local library, and it will compile okay. >> >> So my question is how to specify a local version of python library >> to be used as preference as part of the python setup.py build_ext command. >> >> I have tried the switch -library-dirs=..., --library=, and -rpath= >> but none of them will make my local python library in preference >> to that under /usr/local/lib. >> >> Much grateful for any advice can be given. >> >> Regards, >> >> Peter >> >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: < >> http://mail.python.org/pipermail/matplotlib-users/attachments/20190307/dda2ef24/attachment-0001.html >> > >> >> ------------------------------ >> >> Subject: Digest Footer >> >> _______________________________________________ >> Matplotlib-users mailing list >> Matplotlib-users at python.org >> https://mail.python.org/mailman/listinfo/matplotlib-users >> >> >> ------------------------------ >> >> End of Matplotlib-users Digest, Vol 44, Issue 3 >> *********************************************** >> > > > -- > Jonathan D. Slavin > Astrophysicist - High Energy Astrophysics Division > Center for Astrophysics | Harvard & Smithsonian > Office: (617) 496-7981 | Cell: (781) 363-0035 > 60 Garden Street | MS 83 | Cambridge, MA 02138 > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -- Thomas Caswell tcaswell at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From anntzer.lee at gmail.com Wed Mar 13 11:47:42 2019 From: anntzer.lee at gmail.com (Antony Lee) Date: Wed, 13 Mar 2019 16:47:42 +0100 Subject: [Matplotlib-users] Matplotlib Installation Question on Centos 7 In-Reply-To: References: Message-ID: The patch at https://github.com/matplotlib/matplotlib/pull/13064 will likely not work on old matplotlibs/py2, but perhaps patching get_base_dirs to return an empty list (as suggested in https://github.com/matplotlib/matplotlib/issues/9737) (and then fixing any downstream breakage) will... Antony On Wed, Mar 13, 2019 at 2:23 PM Thomas Caswell wrote: > Can you use the local version of python to run setup.py? It is not clear > to me what version of python you are compiling with. > > Does the patch in https://github.com/matplotlib/matplotlib/pull/13064 > help? > > Failing that, as it looks like you are building matplotlib as part of an > integrated enviroment, I suggest patching `setup.py` and `setup_ext.py` > until it works... > > Tom > > On Thu, Mar 7, 2019 at 12:13 PM Slavin, Jonathan > wrote: > >> Hi Peter, >> >> I'm working on a CentOS 7 system. I can't answer your question directly, >> but I would advise installing anaconda. It makes all this stuff much >> simpler and keeps your local environment cleanly separated from the system >> wide one. >> >> Regards, >> Jon >> >> >>> Date: Thu, 7 Mar 2019 11:36:09 +0000 >>> From: Peter Chiu - UKRI STFC >>> To: "matplotlib-users at python.org" >>> Subject: [Matplotlib-users] Matplotlib Installation Question on Centos >>> 7 >>> Message-ID: >>> Content-Type: text/plain; charset="us-ascii" >>> >>> Hello, >>> >>> This is a novice question and hopefully someone can advise. >>> >>> In order to support a software package for the LOFAR project, >>> I am trying to install Matplotlib on a centos 7 system: >>> >>> python setup.py build_ext >>> --include-dirs=/usr/local/lofar3_2/local/release/include >>> >>> it complains at the point: >>> >>> g++ -pthread -shared build/temp.linux-x86_64-2.7/src/_ttconv.o \ >>> build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt.o \ >>> build/temp.linux-x86_64-2.7/ttconv/pprdrv_tt2.o \ >>> build/temp.linux-x86_64-2.7/ttconv/ttutil.o \ >>> -L/usr/local/lib -L/usr/lib -L/usr/local/lib64 -L/usr/lib64 \ >>> -L/usr/local/lofar3_2/local/release/lib -lpython2.7 \ >>> -o build/lib.linux-x86_64-2.7/matplotlib/ttconv.so >>> /usr/local/lib/libpython2.7.a(posixmodule.o): In function `posix_tmpnam': >>> /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7575: >>> warning: >>> the use of `tmpnam_r' is dangerous, better use `mkstemp' >>> /usr/local/lib/libpython2.7.a(posixmodule.o): In function >>> `posix_tempnam': >>> /usr/local/lofar/python/src/Python-2.7.8/./Modules/posixmodule.c:7522: >>> warning: >>> the use of `tempnam' is dangerous, better use `mkstemp' >>> /usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): \ >>> relocation R_X86_64_32 against `.rodata.str1.8' can not be used when >>> making a shared object; recompile with -fPIC >>> ... >>> /usr/bin/ld: /usr/local/lib/libpython2.7.a(getcompiler.o): \ >>> relocation R_X86_64_32 against `.rodata.str1.8' can not be used when >>> making a shared object; recompile with -fPIC >>> /usr/bin/ld: final link failed: Nonrepresentable section on output >>> collect2: error: ld returned 1 exit status >>> error: command 'g++' failed with exit status 1 >>> >>> Prior to that, I have already installed a local version of python in a >>> separate folder. >>> If I then manually move the switch >>> >>> -L/usr/local/lofar3_2/local/release/lib \ >>> >>> before >>> >>> -L/usr/local/lib >>> >>> it will then pick up the local library, and it will compile okay. >>> >>> So my question is how to specify a local version of python library >>> to be used as preference as part of the python setup.py build_ext >>> command. >>> >>> I have tried the switch -library-dirs=..., --library=, and -rpath= >>> but none of them will make my local python library in preference >>> to that under /usr/local/lib. >>> >>> Much grateful for any advice can be given. >>> >>> Regards, >>> >>> Peter >>> >>> -------------- next part -------------- >>> An HTML attachment was scrubbed... >>> URL: < >>> http://mail.python.org/pipermail/matplotlib-users/attachments/20190307/dda2ef24/attachment-0001.html >>> > >>> >>> ------------------------------ >>> >>> Subject: Digest Footer >>> >>> _______________________________________________ >>> Matplotlib-users mailing list >>> Matplotlib-users at python.org >>> https://mail.python.org/mailman/listinfo/matplotlib-users >>> >>> >>> ------------------------------ >>> >>> End of Matplotlib-users Digest, Vol 44, Issue 3 >>> *********************************************** >>> >> >> >> -- >> Jonathan D. Slavin >> Astrophysicist - High Energy Astrophysics Division >> Center for Astrophysics | Harvard & Smithsonian >> Office: (617) 496-7981 | Cell: (781) 363-0035 >> 60 Garden Street | MS 83 | Cambridge, MA 02138 >> >> >> _______________________________________________ >> Matplotlib-users mailing list >> Matplotlib-users at python.org >> https://mail.python.org/mailman/listinfo/matplotlib-users >> > > > -- > Thomas Caswell > tcaswell at gmail.com > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ajm8671 at gmail.com Thu Mar 14 00:40:47 2019 From: ajm8671 at gmail.com (AJ M) Date: Wed, 13 Mar 2019 23:40:47 -0500 Subject: [Matplotlib-users] Categorical variables and twinx make basically no sense Message-ID: Example code is pasted below. Basically, just wanted to say that this is either completely non-intuitive, or I am failing to understand something fundamental about matplotlib. My impression would be that twinx would let me assign categorical values to however they were before I twinned them (i.e., using the original axis' order and coordinates). But, if you use categorical values, it will truncate them to the length of the categorical list/array. In the example code, if you comment out the x1/x2 categorical assignments and use integers instead (uncomment those), it works as you'd expect. You can even swap the order in which the integers are plotted, but NOT if you use the text assignments, despite the fact that the integer and text axes are the same. Gallery: https://imgur.com/a/NTgCFXB Anyway, someone please let me know if there is some design principle I'm missing here, or if this is a special case. It's missing from any of the top level documentation (see: https://matplotlib.org/gallery/lines_bars_and_markers/categorical_variables.html , https://matplotlib.org/examples/api/two_scales.html ) and took me the better part of this afternoon to figure out. The only conclusion I can come to is that matplotlib treats these values differently, and converts the text arrays to integers under the hood without trying to align them. Cheers, AJ Code: import matplotlib.pyplot as plt x1 = ['apples', 'bananas', 'cheerios'] ##x1 = [1,3,5] y1 = [5, 6, 15] x2 = ['apples','carrots','bananas','watermelon','cheerios'] ##x2 = [1,2,3,4,5] y2 = [100, 200, 300, 400, 500] fig, ax = plt.subplots() ax.scatter(x2, y2) ax2 = ax.twinx() ax2.scatter(x1, y1, color = "orange") plt.show() -------------- next part -------------- An HTML attachment was scrubbed... URL: From jklymak at uvic.ca Thu Mar 14 01:29:08 2019 From: jklymak at uvic.ca (Jody Klymak) Date: Wed, 13 Mar 2019 22:29:08 -0700 Subject: [Matplotlib-users] Categorical variables and twinx make basically no sense In-Reply-To: References: Message-ID: > On Mar 13, 2019, at 21:40 PM, AJ M wrote: > > The only conclusion I can come to is that matplotlib treats these values differently, and converts the text arrays to integers under the hood without trying to align them. Thats basically correct to my understanding - the twin axes is a new axes that shares it?s xlimits with the old one, but we don?t have any way of passing ?categories? from one axes to the next, so it carries its own list of category->integer conversion that gets made anew when you call scatter. The first axes is the one that gets the tick labels. You *may* be able to pass the converter to the second axes, but I?m not sure. Easier would be to just do the following: ```python import matplotlib.pyplot as plt import numpy as np y1 = [5, np.NaN, 6, np.NaN, 15] y2 = [100, 200, 300, 400, 500] x = ['apples','carrots','bananas','watermelon','cheerios'] fig, ax = plt.subplots() ax.scatter(x, y2) ax2 = ax.twinx() ax2.scatter(x, y1, color = "orange") plt.show() ``` Cheers, Jody -------------- next part -------------- An HTML attachment was scrubbed... URL: From ajm8671 at gmail.com Thu Mar 14 04:56:38 2019 From: ajm8671 at gmail.com (AJ M) Date: Thu, 14 Mar 2019 03:56:38 -0500 Subject: [Matplotlib-users] Categorical variables and twinx make basically no sense In-Reply-To: References: Message-ID: Great, thanks for the reply. I tried the NaN solution during my tinkering but thought I should somehow be getting away without having to recreate the axes in the same dimensions, since it's not required when using integers. Just making sure I wasn't missing anything more obvious On Thu, Mar 14, 2019 at 12:29 AM Jody Klymak wrote: > > > On Mar 13, 2019, at 21:40 PM, AJ M wrote: > > The only conclusion I can come to is that matplotlib treats these values > differently, and converts the text arrays to integers under the hood > without trying to align them. > > > Thats basically correct to my understanding - the twin axes is a new axes > that shares it?s xlimits with the old one, but we don?t have any way of > passing ?categories? from one axes to the next, so it carries its own list > of category->integer conversion that gets made anew when you call scatter. > The first axes is the one that gets the tick labels. > > You *may* be able to pass the converter to the second axes, but I?m not > sure. > > Easier would be to just do the following: > > ```python > > import matplotlib.pyplot as plt > import numpy as np > > y1 = [5, np.NaN, 6, np.NaN, 15] > y2 = [100, 200, 300, 400, 500] > > x = ['apples','carrots','bananas','watermelon','cheerios'] > > fig, ax = plt.subplots() > ax.scatter(x, y2) > ax2 = ax.twinx() > ax2.scatter(x, y1, color = "orange") > plt.show() > ``` > > Cheers, Jody > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kip at kdream.com Tue Mar 19 21:22:25 2019 From: kip at kdream.com (Kipton Moravec) Date: Tue, 19 Mar 2019 20:22:25 -0500 Subject: [Matplotlib-users] Plotting logging data with dates Message-ID: I am new and have been reading and playing with the tutorials.? I have not seen what I need to do. I am collecting data on some machines every second. I collect temperature, input voltage, and percentage of the time on. It is two machines (for time on),? 4-8 temperatures, and 4 voltages. it comes to me as a csv file or line, with Date, time, and then all the values comma separated. I can rearrange the data to however Matplotlib requires in Python. That is not the issue. I do not know how to plot the date/time x-axis. The user wants to look at the past hour, past day, past week, past month, and past year. For the plot of the last hour I need a line and the time every 10 minutes on the x axis. For the plot of the day, probably a vertical line every hour and a label every 3 hours. For the plot of the week, a line at midnight, and a day label between the lines. For the plot of the month, I do not know what might work. For the plot of the year, a line between the month and the month between the lines. I want all the data (or a good portion of it) between the axis markers. How do I do this, or find examples or documentation on how to work with time and dates for the x-axis? I found https://blog.mafr.de/2012/03/11/time-series-data-with-matplotlib/ which helped me a lot. I did not know about strpdate2num.? But I think I need a date&time equivalent. Is there such a thing? Where would I find it? Or do I have to make it? I had a friend suggest going with MRTG because it produces the graphs clost to what I want. That looked harder. People log data by time and date and graph it all the time. Something like this has got to have been done before. Kip From binshasr3 at gmail.com Tue Mar 19 22:30:09 2019 From: binshasr3 at gmail.com (Binsha S) Date: Wed, 20 Mar 2019 08:00:09 +0530 Subject: [Matplotlib-users] Matplotlib help Message-ID: Can I ask code help regarding matplotlib ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From pmhobson at gmail.com Tue Mar 19 23:48:20 2019 From: pmhobson at gmail.com (Paul Hobson) Date: Tue, 19 Mar 2019 20:48:20 -0700 Subject: [Matplotlib-users] Matplotlib help In-Reply-To: References: Message-ID: Yes. Be sure to include a small, but working example (that someone can copy/paste and run) that demonstrates the problem you are having along with a clear explanation of what you expect to happen. -p On Tue, Mar 19, 2019 at 7:34 PM Binsha S wrote: > Can I ask code help regarding matplotlib ? > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pmhobson at gmail.com Tue Mar 19 23:51:03 2019 From: pmhobson at gmail.com (Paul Hobson) Date: Tue, 19 Mar 2019 20:51:03 -0700 Subject: [Matplotlib-users] Plotting logging data with dates In-Reply-To: References: Message-ID: This is a long list of topics that you're asking about, and a lot of it isn't very clear. I would head over to pandas.pydata.org to learn about basic time series plotting and resampling. We can probably better help you if you ask about a specific problem. On Tue, Mar 19, 2019 at 6:23 PM Kipton Moravec wrote: > I am new and have been reading and playing with the tutorials. I have > not seen what I need to do. > > I am collecting data on some machines every second. I collect > temperature, input voltage, and percentage of the time on. It is two > machines (for time on), 4-8 temperatures, and 4 voltages. > > it comes to me as a csv file or line, with Date, time, and then all the > values comma separated. > > I can rearrange the data to however Matplotlib requires in Python. That > is not the issue. > > I do not know how to plot the date/time x-axis. > > The user wants to look at the past hour, past day, past week, past > month, and past year. > > For the plot of the last hour I need a line and the time every 10 > minutes on the x axis. > > For the plot of the day, probably a vertical line every hour and a label > every 3 hours. > > For the plot of the week, a line at midnight, and a day label between > the lines. > > For the plot of the month, I do not know what might work. > > For the plot of the year, a line between the month and the month between > the lines. > > I want all the data (or a good portion of it) between the axis markers. > > How do I do this, or find examples or documentation on how to work with > time and dates for the x-axis? > > I found > https://blog.mafr.de/2012/03/11/time-series-data-with-matplotlib/ which > helped me a lot. I did not know about strpdate2num. But I think I need > a date&time equivalent. Is there such a thing? Where would I find it? Or > do I have to make it? > > I had a friend suggest going with MRTG because it produces the graphs > clost to what I want. That looked harder. > > People log data by time and date and graph it all the time. Something > like this has got to have been done before. > > Kip > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From binshasrn at gmail.com Wed Mar 20 01:58:29 2019 From: binshasrn at gmail.com (binsha s) Date: Wed, 20 Mar 2019 11:28:29 +0530 Subject: [Matplotlib-users] matplotlib code Message-ID: *Requirement Description* I am trying to build a gui app for graph plotting. I used multiple files to read and plot as a slideshow. For that first set of data is read and plot then after a time interval it should plot next set of data and so on. I also have play ,pause, forward, backward for the slideshow for plot. Data from the file should be plotted as a slideshow if play button is clicked. For pause button, it should pause the slideshow. Forward and backward button for loop to plot forward play and backward play. I have a text file contains data as: -210.00 -10.13672 -10.10742 -10.01953 -209.98 -1.93359 -1.93359 -1.93359 -209.96 -5.36133 -5.33203 -5.33203 --- 300.02 -19.74609 -19.71680 -19.68750 *What is not working* Error occurs for the clicking of forward, backward, pause buttons. Multiple data plotting also not showing as a slideshow, one graph multiple data to be plotted and show as a slideshow *What I have tried:* *graphgenerate.py* from PyQt5 import QtCore, QtGui, QtWidgets class Ui_MplMainWindow(object): def setupUi(self, MplMainWindow): MplMainWindow.setObjectName("MplMainWindow") MplMainWindow.resize(1022, 662) self.centralwidget = QtWidgets.QWidget(MplMainWindow) self.centralwidget.setObjectName("centralwidget") self.upload_btn = QtWidgets.QPushButton(self.centralwidget) self.upload_btn.setGeometry(QtCore.QRect(80, 30, 91, 41)) self.upload_btn.setObjectName("upload_btn") self.comboBox = QtWidgets.QComboBox(self.centralwidget) self.comboBox.setGeometry(QtCore.QRect(180, 40, 181, 22)) self.comboBox.setStyleSheet("background-color: rgb(255, 255, 255);") self.comboBox.setObjectName("comboBox") self.graph_label = QtWidgets.QLabel(self.centralwidget) self.graph_label.setGeometry(QtCore.QRect(730, 40, 47, 16)) self.graph_label.setObjectName("graph_label") self.backward_btn = QtWidgets.QPushButton(self.centralwidget) self.backward_btn.setGeometry(QtCore.QRect(550, 30, 41, 31)) self.backward_btn.setStyleSheet("\n" "\n" "background-color: rgb(85, 85, 127);\n" "color: white;\n" "\n" "\n" "") self.backward_btn.setObjectName("backward_btn") self.playbutton = QtWidgets.QPushButton(self.centralwidget) self.playbutton.setGeometry(QtCore.QRect(590, 30, 41, 31)) self.playbutton.setStyleSheet("\n" "background-color: rgb(255, 170, 0);\n" "\n" "\n" "") self.playbutton.setObjectName("playbutton") self.pause_button = QtWidgets.QPushButton(self.centralwidget) self.pause_button.setGeometry(QtCore.QRect(630, 30, 41, 31)) self.pause_button.setStyleSheet("background-color: rgb(255, 170, 0);") self.pause_button.setObjectName("pause_button") self.forward_btn = QtWidgets.QPushButton(self.centralwidget) self.forward_btn.setGeometry(QtCore.QRect(670, 30, 41, 31)) self.forward_btn.setStyleSheet("\n" "\n" "background-color: rgb(85, 85, 127);\n" "color: white;\n" "\n" "\n" "") self.forward_btn.setObjectName("forward_btn") self.time_interval_lbl = QtWidgets.QLabel(self.centralwidget) self.time_interval_lbl.setGeometry(QtCore.QRect(830, 40, 81, 16)) self.time_interval_lbl.setObjectName("time_interval_lbl") self.timeinterval_spinbox = QtWidgets.QSpinBox(self.centralwidget) self.timeinterval_spinbox.setGeometry(QtCore.QRect(900, 30, 41, 31)) self.timeinterval_spinbox.setProperty("value", 3) self.timeinterval_spinbox.setObjectName("timeinterval_spinbox") self.MplWidget = MplWidget(self.centralwidget) self.MplWidget.setGeometry(QtCore.QRect(40, 109, 1251, 511)) self.MplWidget.setObjectName("MplWidget") self.column_label = QtWidgets.QLabel(self.centralwidget) self.column_label.setGeometry(QtCore.QRect(370, 40, 47, 13)) self.column_label.setObjectName("column_label") self.column_Combobox = QtWidgets.QComboBox(self.centralwidget) self.column_Combobox.setGeometry(QtCore.QRect(420, 30, 91, 31)) self.column_Combobox.setStyleSheet("background-color: rgb(255, 255, 255);") self.column_Combobox.setObjectName("column_Combobox") self.column_Combobox.addItem("") self.graphSpinbox = QtWidgets.QSpinBox(self.centralwidget) self.graphSpinbox.setGeometry(QtCore.QRect(770, 30, 42, 31)) self.graphSpinbox.setContextMenuPolicy(QtCore.Qt.DefaultContextMenu) self.graphSpinbox.setMinimum(5) self.graphSpinbox.setObjectName("graphSpinbox") self.label = QtWidgets.QLabel(self.centralwidget) self.label.setGeometry(QtCore.QRect(960, 40, 47, 13)) self.label.setObjectName("label") self.comboBox_2 = QtWidgets.QComboBox(self.centralwidget) self.comboBox_2.setGeometry(QtCore.QRect(1010, 21, 69, 41)) self.comboBox_2.setStyleSheet("background-color: rgb(255, 255, 255);\n" "color:green;\n" "") self.comboBox_2.setObjectName("comboBox_2") self.comboBox_2.addItem("") self.comboBox_2.addItem("") self.comboBox_2.addItem("") self.comboBox_2.addItem("") self.comboBox_2.addItem("") MplMainWindow.setCentralWidget(self.centralwidget) self.menubar = QtWidgets.QMenuBar(MplMainWindow) self.menubar.setGeometry(QtCore.QRect(0, 0, 1022, 21)) self.menubar.setObjectName("menubar") MplMainWindow.setMenuBar(self.menubar) self.statusbar = QtWidgets.QStatusBar(MplMainWindow) self.statusbar.setObjectName("statusbar") MplMainWindow.setStatusBar(self.statusbar) self.retranslateUi(MplMainWindow) QtCore.QMetaObject.connectSlotsByName(MplMainWindow) def retranslateUi(self, MplMainWindow): _translate = QtCore.QCoreApplication.translate MplMainWindow.setWindowTitle(_translate("MplMainWindow", "MainWindow")) self.upload_btn.setText(_translate("MplMainWindow", "Upload File")) self.graph_label.setText(_translate("MplMainWindow", "Graphs:")) self.backward_btn.setToolTip(_translate("MplMainWindow", "\n" "\n" "

Backward

")) self.backward_btn.setText(_translate("MplMainWindow", "<<")) self.playbutton.setToolTip(_translate("MplMainWindow", "

Play

")) self.playbutton.setText(_translate("MplMainWindow", ">")) self.pause_button.setToolTip(_translate("MplMainWindow", "

Pause

")) self.pause_button.setText(_translate("MplMainWindow", "||")) self.forward_btn.setToolTip(_translate("MplMainWindow", "\n" "\n" "

Forward

")) self.forward_btn.setText(_translate("MplMainWindow", ">>")) self.time_interval_lbl.setText(_translate("MplMainWindow", "Time interval:")) self.column_label.setText(_translate("MplMainWindow", "Y Data:")) self.column_Combobox.setItemText(0, _translate("MplMainWindow", "<--Select--->")) self.label.setText(_translate("MplMainWindow", "X range:")) self.comboBox_2.setItemText(0, _translate("MplMainWindow", "120")) self.comboBox_2.setItemText(1, _translate("MplMainWindow", "40")) self.comboBox_2.setItemText(2, _translate("MplMainWindow", "80")) self.comboBox_2.setItemText(3, _translate("MplMainWindow", "20")) self.comboBox_2.setItemText(4, _translate("MplMainWindow", "240")) from mplwidget import MplWidget if __name__ == "__main__": import sys app = QtWidgets.QApplication(sys.argv) MplMainWindow = QtWidgets.QMainWindow() ui = Ui_MplMainWindow() ui.setupUi(MplMainWindow) MplMainWindow.show() sys.exit(app.exec_()) *mplwidget.py* from PyQt5 import QtWidgets, QtGui, QtCore from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure class MplWidget(QtWidgets.QWidget): def __init__(self, parent=None): QtWidgets.QWidget.__init__(self, parent) #self.canvas = FigureCanvas(Figure()) self.fig=Figure() self.canvas=FigureCanvas(self.fig) vertical_layout = QtWidgets.QVBoxLayout() vertical_layout.addWidget(self.canvas) self.canvas.axes = self.canvas.figure.add_subplot(111) self.setLayout(vertical_layout) *graphmain.py* from asyncore import loop from PyQt5 import QtWidgets, QtCore, QtGui from PyQt5 import * from PyQt5.QtCore import QEventLoop, QTimer from PyQt5.QtWidgets import * from PyQt5.uic import loadUi from matplotlib.animation import FuncAnimation from matplotlib.backends.backend_qt5agg import (NavigationToolbar2QT as NavigationToolbar) import matplotlib.pyplot as plt import numpy as np from matplotlib import style import random import matplotlib.animation as animation import os import shutil import time class MatplotlibWidget(QMainWindow): def __init__(self): QMainWindow.__init__(self) loadUi("graphgenerate.ui", self) self.setWindowTitle("Graph Plotting App") self.upload_btn.clicked.connect(self.upload_File) self.playbutton.clicked.connect(self.selectFile) self.pause_button.clicked.connect(self.stopRun) self.backward_btn.clicked.connect(self.backward) self.forward_btn.clicked.connect(self.forward) self.timeinterval_spinbox.setValue(3) self.timeinterval_spinbox.setMinimum(1) self.addToolBar(NavigationToolbar(self.MplWidget.canvas, self)) self.runs=True self.forwards=True self.i=0 self.mini = 0 self.maxi = 100 global curr_pos curr_pos=0 def upload_File(self): '''fileName,_= QFileDialog.getOpenFileName(None, "Open", "", "All Files (*)") shutil.copy(fileName,"Files") file=os.path.split(fileName)[1] self.comboBox.addItem(file)''' fname=[] file_dialog = QFileDialog() file_dialog.setFileMode(QFileDialog.ExistingFiles) file_dialog.setOption(QFileDialog.DontUseNativeDialog, True) file_view = file_dialog.findChild(QListView, 'listView') # to make it possible to select multiple directories: if file_view: file_view.setSelectionMode(QAbstractItemView.MultiSelection) f_tree_view = file_dialog.findChild(QTreeView) if f_tree_view: f_tree_view.setSelectionMode(QAbstractItemView.MultiSelection) if file_dialog.exec(): paths = file_dialog.selectedFiles() for p in paths: sp = os.path.split(p)[1] fname.append(sp) shutil.copy(p,"Files") self.comboBox.addItems(fname) def selectFile(self): QtWidgets.QMessageBox.warning(QtWidgets.QMessageBox(), 'Error', 'Please Select File and Column to plot') self.comboBox.activated[str].connect(self.selectColumn) def selectColumn(self,i): global plots,x_arr,y_arr path = "Files" + "\\" + i f1 = open(path, 'r') global data,m,n data = np.genfromtxt(f1) m = np.size(data, 0) n = np.size(data, 1) col = [] for k in range(1,n): col.append("Column " + str(k+1)) self.column_Combobox.clear() self.column_Combobox.addItems(col) selectedCol= self.column_Combobox.activated[str].connect(self.drawGraph) def drawGraph(self,i): col_value=int(i.split()[1]) global x,y,iters,val,gvalue x = data[:, 0].reshape(m, 1) y = data[:, col_value-1].reshape(m, 1) gvalue=self.graphSpinbox.value() iters=m //(gvalue-1) global current_iter current_iter = 0 val=self.timeinterval_spinbox.value() self.plotData(iters,x,y,current_iter,val,gvalue) def plotDraw(self,x ,y): global x_data,y_data x_data=[] x_data.append(x) y_data=[] y_data.append(y) self.MplWidget.canvas.axes.clear() self.MplWidget.canvas.axes.plot(x, y) self.MplWidget.canvas.axes.legend(('cosinus', 'sinus'), loc='upper right') self.MplWidget.canvas.axes.set_title('Signal') self.MplWidget.canvas.draw() self.MplWidget.canvas.show() def plotData(self,iters,x,y,current_iter,val,gvalue): for i in range(gvalue): self.plotDraw(x[current_iter:current_iter + iters], y[current_iter:current_iter + iters]) sec_value=str(val)+str(0)+str(0)+str(0) current_iter = current_iter + iters loop = QEventLoop() QTimer.singleShot(int(sec_value), loop.quit) loop.exec_() def stopRun(self,event=None): self.runs=False self.event.stop() def backward(self): curr_pos=len(x_data) if curr_pos!=0: self.plotData(iters, x_data[curr_pos], y_data[curr_pos], current_iter, val, gvalue) curr_pos = curr_pos - 1 def forward(self): print("Forward button clicked") curr_pos=0 if curr_pos From jerzy.karczmarczuk at unicaen.fr Wed Mar 20 06:04:12 2019 From: jerzy.karczmarczuk at unicaen.fr (Jerzy Karczmarczuk) Date: Wed, 20 Mar 2019 11:04:12 +0100 Subject: [Matplotlib-users] Plotting logging data with dates In-Reply-To: References: Message-ID: Le 20/03/2019 ? 02:22, Kipton Moravec a ?crit?: > I am new and have been reading and playing with the tutorials.? I have > not seen what I need to do. > ... > > I do not know how to plot the date/time x-axis. > > *The user* wants to look ... "The user"... - I read this as the evidence that you are doing some work for somebody else. And yet, you demand that the*matplotlib list solves ALL your problems??* Perhaps, instead of "playing with tutorials" you read the documentation, e.g. https://matplotlib.org/gallery/text_labels_and_annotations/date.html https://pythonspot.com/plot-time-with-matplotlib/ and some stackOverflow pages about months plotted with Matplotlib. There is PLENTY of information about plotting temporal data. Such formulations as "I do not know what might work." is not a way to ask for a professional help. Google (despite all...) is still your friend. I found almost immediately about 20 relevant pages, and I am sure you can do it yourself as well. (And, of course, Pandas has a full section on this sort of data) Jerzy Karczmaczuk -------------- next part -------------- An HTML attachment was scrubbed... URL: From binshasr3 at gmail.com Wed Mar 20 13:20:10 2019 From: binshasr3 at gmail.com (Binsha S) Date: Wed, 20 Mar 2019 22:50:10 +0530 Subject: [Matplotlib-users] Fwd: Matplotlib help In-Reply-To: References: Message-ID: ---------- Forwarded message --------- From: Binsha S Date: Wed, Mar 20, 2019 at 1:16 PM Subject: Re: [Matplotlib-users] Matplotlib help To: Paul Hobson *Requirement Description* I am trying to build a gui app for graph plotting. I used multiple files to read and plot as a slideshow. For that first set of data is read and plot then after a time interval it should plot next set of data and so on. I also have play ,pause, forward, backward for the slideshow for plot. Data from the file should be plotted as a slideshow if play button is clicked. For pause button, it should pause the slideshow. Forward and backward button for loop to plot forward play and backward play. I have a text file contains data as: -210.00 -10.13672 -10.10742 -10.01953 -209.98 -1.93359 -1.93359 -1.93359 -209.96 -5.36133 -5.33203 -5.33203 --- 300.02 -19.74609 -19.71680 -19.68750 *What is not working* Error occurs for the clicking of forward, backward, pause buttons. Multiple data plotting also not showing as a slideshow, one graph multiple data to be plotted and show as a slideshow *What I have tried:* *graphgenerate.py* from PyQt5 import QtCore, QtGui, QtWidgets class Ui_MplMainWindow(object): def setupUi(self, MplMainWindow): MplMainWindow.setObjectName("MplMainWindow") MplMainWindow.resize(1022, 662) self.centralwidget = QtWidgets.QWidget(MplMainWindow) self.centralwidget.setObjectName("centralwidget") self.upload_btn = QtWidgets.QPushButton(self.centralwidget) self.upload_btn.setGeometry(QtCore.QRect(80, 30, 91, 41)) self.upload_btn.setObjectName("upload_btn") self.comboBox = QtWidgets.QComboBox(self.centralwidget) self.comboBox.setGeometry(QtCore.QRect(180, 40, 181, 22)) self.comboBox.setStyleSheet("background-color: rgb(255, 255, 255);") self.comboBox.setObjectName("comboBox") self.graph_label = QtWidgets.QLabel(self.centralwidget) self.graph_label.setGeometry(QtCore.QRect(730, 40, 47, 16)) self.graph_label.setObjectName("graph_label") self.backward_btn = QtWidgets.QPushButton(self.centralwidget) self.backward_btn.setGeometry(QtCore.QRect(550, 30, 41, 31)) self.backward_btn.setStyleSheet("\n" "\n" "background-color: rgb(85, 85, 127);\n" "color: white;\n" "\n" "\n" "") self.backward_btn.setObjectName("backward_btn") self.playbutton = QtWidgets.QPushButton(self.centralwidget) self.playbutton.setGeometry(QtCore.QRect(590, 30, 41, 31)) self.playbutton.setStyleSheet("\n" "background-color: rgb(255, 170, 0);\n" "\n" "\n" "") self.playbutton.setObjectName("playbutton") self.pause_button = QtWidgets.QPushButton(self.centralwidget) self.pause_button.setGeometry(QtCore.QRect(630, 30, 41, 31)) self.pause_button.setStyleSheet("background-color: rgb(255, 170, 0);") self.pause_button.setObjectName("pause_button") self.forward_btn = QtWidgets.QPushButton(self.centralwidget) self.forward_btn.setGeometry(QtCore.QRect(670, 30, 41, 31)) self.forward_btn.setStyleSheet("\n" "\n" "background-color: rgb(85, 85, 127);\n" "color: white;\n" "\n" "\n" "") self.forward_btn.setObjectName("forward_btn") self.time_interval_lbl = QtWidgets.QLabel(self.centralwidget) self.time_interval_lbl.setGeometry(QtCore.QRect(830, 40, 81, 16)) self.time_interval_lbl.setObjectName("time_interval_lbl") self.timeinterval_spinbox = QtWidgets.QSpinBox(self.centralwidget) self.timeinterval_spinbox.setGeometry(QtCore.QRect(900, 30, 41, 31)) self.timeinterval_spinbox.setProperty("value", 3) self.timeinterval_spinbox.setObjectName("timeinterval_spinbox") self.MplWidget = MplWidget(self.centralwidget) self.MplWidget.setGeometry(QtCore.QRect(40, 109, 1251, 511)) self.MplWidget.setObjectName("MplWidget") self.column_label = QtWidgets.QLabel(self.centralwidget) self.column_label.setGeometry(QtCore.QRect(370, 40, 47, 13)) self.column_label.setObjectName("column_label") self.column_Combobox = QtWidgets.QComboBox(self.centralwidget) self.column_Combobox.setGeometry(QtCore.QRect(420, 30, 91, 31)) self.column_Combobox.setStyleSheet("background-color: rgb(255, 255, 255);") self.column_Combobox.setObjectName("column_Combobox") self.column_Combobox.addItem("") self.graphSpinbox = QtWidgets.QSpinBox(self.centralwidget) self.graphSpinbox.setGeometry(QtCore.QRect(770, 30, 42, 31)) self.graphSpinbox.setContextMenuPolicy(QtCore.Qt.DefaultContextMenu) self.graphSpinbox.setMinimum(5) self.graphSpinbox.setObjectName("graphSpinbox") self.label = QtWidgets.QLabel(self.centralwidget) self.label.setGeometry(QtCore.QRect(960, 40, 47, 13)) self.label.setObjectName("label") self.comboBox_2 = QtWidgets.QComboBox(self.centralwidget) self.comboBox_2.setGeometry(QtCore.QRect(1010, 21, 69, 41)) self.comboBox_2.setStyleSheet("background-color: rgb(255, 255, 255);\n" "color:green;\n" "") self.comboBox_2.setObjectName("comboBox_2") self.comboBox_2.addItem("") self.comboBox_2.addItem("") self.comboBox_2.addItem("") self.comboBox_2.addItem("") self.comboBox_2.addItem("") MplMainWindow.setCentralWidget(self.centralwidget) self.menubar = QtWidgets.QMenuBar(MplMainWindow) self.menubar.setGeometry(QtCore.QRect(0, 0, 1022, 21)) self.menubar.setObjectName("menubar") MplMainWindow.setMenuBar(self.menubar) self.statusbar = QtWidgets.QStatusBar(MplMainWindow) self.statusbar.setObjectName("statusbar") MplMainWindow.setStatusBar(self.statusbar) self.retranslateUi(MplMainWindow) QtCore.QMetaObject.connectSlotsByName(MplMainWindow) def retranslateUi(self, MplMainWindow): _translate = QtCore.QCoreApplication.translate MplMainWindow.setWindowTitle(_translate("MplMainWindow", "MainWindow")) self.upload_btn.setText(_translate("MplMainWindow", "Upload File")) self.graph_label.setText(_translate("MplMainWindow", "Graphs:")) self.backward_btn.setToolTip(_translate("MplMainWindow", "\n" "\n" "

Backward

")) self.backward_btn.setText(_translate("MplMainWindow", "<<")) self.playbutton.setToolTip(_translate("MplMainWindow", "

Play

")) self.playbutton.setText(_translate("MplMainWindow", ">")) self.pause_button.setToolTip(_translate("MplMainWindow", "

Pause

")) self.pause_button.setText(_translate("MplMainWindow", "||")) self.forward_btn.setToolTip(_translate("MplMainWindow", "\n" "\n" "

Forward

")) self.forward_btn.setText(_translate("MplMainWindow", ">>")) self.time_interval_lbl.setText(_translate("MplMainWindow", "Time interval:")) self.column_label.setText(_translate("MplMainWindow", "Y Data:")) self.column_Combobox.setItemText(0, _translate("MplMainWindow", "<--Select--->")) self.label.setText(_translate("MplMainWindow", "X range:")) self.comboBox_2.setItemText(0, _translate("MplMainWindow", "120")) self.comboBox_2.setItemText(1, _translate("MplMainWindow", "40")) self.comboBox_2.setItemText(2, _translate("MplMainWindow", "80")) self.comboBox_2.setItemText(3, _translate("MplMainWindow", "20")) self.comboBox_2.setItemText(4, _translate("MplMainWindow", "240")) from mplwidget import MplWidget if __name__ == "__main__": import sys app = QtWidgets.QApplication(sys.argv) MplMainWindow = QtWidgets.QMainWindow() ui = Ui_MplMainWindow() ui.setupUi(MplMainWindow) MplMainWindow.show() sys.exit(app.exec_()) *mplwidget.py* from PyQt5 import QtWidgets, QtGui, QtCore from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure class MplWidget(QtWidgets.QWidget): def __init__(self, parent=None): QtWidgets.QWidget.__init__(self, parent) #self.canvas = FigureCanvas(Figure()) self.fig=Figure() self.canvas=FigureCanvas(self.fig) vertical_layout = QtWidgets.QVBoxLayout() vertical_layout.addWidget(self.canvas) self.canvas.axes = self.canvas.figure.add_subplot(111) self.setLayout(vertical_layout) *graphmain.py* from asyncore import loop from PyQt5 import QtWidgets, QtCore, QtGui from PyQt5 import * from PyQt5.QtCore import QEventLoop, QTimer from PyQt5.QtWidgets import * from PyQt5.uic import loadUi from matplotlib.animation import FuncAnimation from matplotlib.backends.backend_qt5agg import (NavigationToolbar2QT as NavigationToolbar) import matplotlib.pyplot as plt import numpy as np from matplotlib import style import random import matplotlib.animation as animation import os import shutil import time class MatplotlibWidget(QMainWindow): def __init__(self): QMainWindow.__init__(self) loadUi("graphgenerate.ui", self) self.setWindowTitle("Graph Plotting App") self.upload_btn.clicked.connect(self.upload_File) self.playbutton.clicked.connect(self.selectFile) self.pause_button.clicked.connect(self.stopRun) self.backward_btn.clicked.connect(self.backward) self.forward_btn.clicked.connect(self.forward) self.timeinterval_spinbox.setValue(3) self.timeinterval_spinbox.setMinimum(1) self.addToolBar(NavigationToolbar(self.MplWidget.canvas, self)) self.runs=True self.forwards=True self.i=0 self.mini = 0 self.maxi = 100 global curr_pos curr_pos=0 def upload_File(self): '''fileName,_= QFileDialog.getOpenFileName(None, "Open", "", "All Files (*)") shutil.copy(fileName,"Files") file=os.path.split(fileName)[1] self.comboBox.addItem(file)''' fname=[] file_dialog = QFileDialog() file_dialog.setFileMode(QFileDialog.ExistingFiles) file_dialog.setOption(QFileDialog.DontUseNativeDialog, True) file_view = file_dialog.findChild(QListView, 'listView') # to make it possible to select multiple directories: if file_view: file_view.setSelectionMode(QAbstractItemView.MultiSelection) f_tree_view = file_dialog.findChild(QTreeView) if f_tree_view: f_tree_view.setSelectionMode(QAbstractItemView.MultiSelection) if file_dialog.exec(): paths = file_dialog.selectedFiles() for p in paths: sp = os.path.split(p)[1] fname.append(sp) shutil.copy(p,"Files") self.comboBox.addItems(fname) def selectFile(self): QtWidgets.QMessageBox.warning(QtWidgets.QMessageBox(), 'Error', 'Please Select File and Column to plot') self.comboBox.activated[str].connect(self.selectColumn) def selectColumn(self,i): global plots,x_arr,y_arr path = "Files" + "\\" + i f1 = open(path, 'r') global data,m,n data = np.genfromtxt(f1) m = np.size(data, 0) n = np.size(data, 1) col = [] for k in range(1,n): col.append("Column " + str(k+1)) self.column_Combobox.clear() self.column_Combobox.addItems(col) selectedCol= self.column_Combobox.activated[str].connect(self.drawGraph) def drawGraph(self,i): col_value=int(i.split()[1]) global x,y,iters,val,gvalue x = data[:, 0].reshape(m, 1) y = data[:, col_value-1].reshape(m, 1) gvalue=self.graphSpinbox.value() iters=m //(gvalue-1) global current_iter current_iter = 0 val=self.timeinterval_spinbox.value() self.plotData(iters,x,y,current_iter,val,gvalue) def plotDraw(self,x ,y): global x_data,y_data x_data=[] x_data.append(x) y_data=[] y_data.append(y) self.MplWidget.canvas.axes.clear() self.MplWidget.canvas.axes.plot(x, y) self.MplWidget.canvas.axes.legend(('cosinus', 'sinus'), loc='upper right') self.MplWidget.canvas.axes.set_title('Signal') self.MplWidget.canvas.draw() self.MplWidget.canvas.show() def plotData(self,iters,x,y,current_iter,val,gvalue): for i in range(gvalue): self.plotDraw(x[current_iter:current_iter + iters], y[current_iter:current_iter + iters]) sec_value=str(val)+str(0)+str(0)+str(0) current_iter = current_iter + iters loop = QEventLoop() QTimer.singleShot(int(sec_value), loop.quit) loop.exec_() def stopRun(self,event=None): self.runs=False self.event.stop() def backward(self): curr_pos=len(x_data) if curr_pos!=0: self.plotData(iters, x_data[curr_pos], y_data[curr_pos], current_iter, val, gvalue) curr_pos = curr_pos - 1 def forward(self): print("Forward button clicked") curr_pos=0 if curr_pos wrote: > Yes. Be sure to include a small, but working example (that someone can > copy/paste and run) that demonstrates the problem you are having along with > a clear explanation of what you expect to happen. > -p > > On Tue, Mar 19, 2019 at 7:34 PM Binsha S wrote: > >> Can I ask code help regarding matplotlib ? >> _______________________________________________ >> Matplotlib-users mailing list >> Matplotlib-users at python.org >> https://mail.python.org/mailman/listinfo/matplotlib-users >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jerzy.karczmarczuk at unicaen.fr Wed Mar 20 16:49:46 2019 From: jerzy.karczmarczuk at unicaen.fr (Jerzy Karczmarczuk) Date: Wed, 20 Mar 2019 21:49:46 +0100 Subject: [Matplotlib-users] Fwd: Matplotlib help In-Reply-To: References: Message-ID: <87d4cdef-619b-7bab-9b30-92e9b3d93d4e@unicaen.fr> Le 20/03/2019 ? 06:58, binsha s a ?crit?: > *...* > ? ?I am trying to build a gui app for graph plotting. I used multiple > files ... A. As far as I can see it, your problems are related to Qt, not to Matplotlib. Event Loops, callbacks... Why do you ask Matplotlib people for help? B. Did you understand the advice of Paul Hobson: > Be sure to include a *small, but working* example (that someone can > copy/paste and run) that *demonstrates the problem* you are having > along with a clear explanation of what you expect to happen. You included a dump of a *long* program /*not adequately formatted for testing*/; just from reading it it is not easy to see what do you want... ?JK -------------- next part -------------- An HTML attachment was scrubbed... URL: From kip at kdream.com Wed Mar 20 20:47:02 2019 From: kip at kdream.com (Kipton Moravec) Date: Wed, 20 Mar 2019 19:47:02 -0500 Subject: [Matplotlib-users] Plotting logging data with dates In-Reply-To: References: Message-ID: Thanks, I did not know what to ask for to Google. I did not expect anyone to solve all my problems, and I was reading the documentation, and playing with the tutorials. I was reading the matrplotlib Users Guide. That was the documentation, and I did not see anything about plotting time. So I must have missed it. https://matplotlib.org/users/index.html I never heard of Pandas or pythonspot. I am doing this for my Amateur Radio Club, I am the Communications Director and maintain the repeater. So we are monitoring different things so we can see what changes over time, and see if something is about to fail. And when I said user I meant the person looking at the graphs on a web page. And when I said I do not know what might work, it is because I do not know enough to know what my options or trade-offs are or what it will look like. When you are doing a year it makes sense to have a vertical line every month. When you are doing a week it makes sense to have a vertical line at midnight every day. When you are doing a day a line every hour seems like too much. Maybe once every 3 hours maybe every 6 hours, or something else. Same with doing a month. How do you plot it so you know where you are? A vertical line every midnight seems too often. Maybe every 7 days (7, 14, 21, 28)? Maybe every Sunday? I do not know what will look good until I try a few different ways and see what is most pleasing. And what is pleasing to me may not be good for you. I have not seen any plots like this that make me say "that is what it should look like". Thanks to you and Paul I have a direction to look, and the terminology. That is all I really need. And take it easy on the new guy... Kip On 3/20/19 5:04 AM, Jerzy Karczmarczuk wrote: > > > Le 20/03/2019 ? 02:22, Kipton Moravec a ?crit?: >> I am new and have been reading and playing with the tutorials.? I >> have not seen what I need to do. >> ... >> >> I do not know how to plot the date/time x-axis. >> >> *The user* wants to look ... > > "The user"... - I read this as the evidence that you are doing some > work for somebody else. And yet, you demand that the*matplotlib list > solves ALL your problems??* > > Perhaps, instead of "playing with tutorials" you read the > documentation, e.g. > > https://matplotlib.org/gallery/text_labels_and_annotations/date.html > https://pythonspot.com/plot-time-with-matplotlib/ > > and some stackOverflow pages about months plotted with Matplotlib. > > There is PLENTY of information about plotting temporal data. Such > formulations as "I do not know what might work." is not a way to ask > for a professional help. Google (despite all...) is still your friend. > I found almost immediately about 20 relevant pages, and I am sure you > can do it yourself as well. > > (And, of course, Pandas has a full section on this sort of data) > > Jerzy Karczmaczuk > > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From ic3balandran at yahoo.com Thu Mar 21 01:50:18 2019 From: ic3balandran at yahoo.com (fredz0003) Date: Wed, 20 Mar 2019 22:50:18 -0700 (MST) Subject: [Matplotlib-users] Animate CSV multiple lines Message-ID: <1553147418612-0.post@n5.nabble.com> Hi, I have been trying to accomplish this for a while that I finally decided to reach out for some help. I have browse nearly 100 stackoverflow posts, and others on the web, youtube. I've tried nearly a dozen scripts and I can't seem to find a way to do this. I can animate a line just fine, but when it comes to multiple lines I get stuck and don't know how to handle that in the animate() function. I believe the emitData is where things go wrong, but I don't understand how exactly that method needs to be written for returning multiple lines. Tasks: 1 > Import csv data with pandas 2 > Animate lines with matplotlib import matplotlib.pyplot as plt import matplotlib.animation as animation from matplotlib.lines import Line2D import pandas as pd import math import time # read csv data into pd dataframes df = pd.read_csv("data_log.csv") # Initalize script constants ymin = -1.1 ymax = 1.1 linesPerPlot = 3 samplesPerFrame = 1 framesPerSecond = 20 secondsPerPlot = 5 # Calculate dependent constants samplesPerSecond = samplesPerFrame * framesPerSecond samplesPerPlot = samplesPerSecond * secondsPerPlot secondsPerSample = 1.0/samplesPerSecond millisPerFrame = 1000.0/framesPerSecond # Define core functions def makeLine(ax, maxt, dt, ymin, ymax, color): """Make an empty Line2D for the initial chart.""" nvalues = int(round(maxt/dt)) tdata = [dt*tm for tm in range(nvalues)] ydata = [0 for tm in range(nvalues)] line = Line2D(tdata, ydata, color=color) ax.add_line(line) ax.set_ylim(ymin, ymax) return line def makeChart(ax, maxt, dt, linesPerPlot, ymin, ymax): """Make a chart and return a list of the lines it contains.""" colors = [ 'r', 'b', 'g', 'k' ] # Make the lines and store in a list. lines = [] for iline in range(0,linesPerPlot): lines.append(makeLine(ax, maxt, dt, ymin, ymax, colors[iline % len(colors)])) ax.set_xlim(0, maxt) return lines def initDisplay(lines): """Init display.""" return lines def updateLine(line, ys): """Update the data in one line, popping off the last value.""" tdata, ydata = line.get_data() for y in ys: ydata.append(y) ydata.pop(0) line.set_data(tdata, ydata) return line def updateLines(lines, arrays): """Update individual lines and return a sequence of artists to the animator.""" artists = [] for iline in range(len(lines)): artists.append(updateLine(lines[iline], arrays[iline])) return artists def emitData(linesPerPlot, samplesPerFrame): """Create the data that will be plotted.""" nsample = 0 while True: samples = [[] for i in range(linesPerPlot)] # I think the series pd needs to be here # in the foorloop only so many samples are extracted for _ in range(samplesPerFrame): nsample = nsample + 1 for iline in range(linesPerPlot): pi_increment = (math.pi/(10.0 * (iline+1))) samples[iline].append(math.sin(nsample * pi_increment)) #samples[iline].append(df[(df.columns[iline + 1])]) # +1 because first column is time #samples[iline].append(df.iloc[:,iline+1:].values) yield samples # Make chart. fig, ax = plt.subplots() lines = makeChart(ax, secondsPerPlot, secondsPerSample, linesPerPlot, ymin, ymax) # Start the animator. update = lambda samples: updateLines(lines, samples) emitter = lambda: emitData(linesPerPlot, samplesPerFrame) init = lambda: initDisplay(lines) ani = animation.FuncAnimation(fig, update, emitter, init_func=init, interval=millisPerFrame, blit=True) plt.show() Thanks for the help! Any document or article that can point me in the right direction would be appreciated. -- Sent from: http://matplotlib.1069221.n5.nabble.com/matplotlib-users-f3.html From jerzy.karczmarczuk at unicaen.fr Thu Mar 21 06:10:54 2019 From: jerzy.karczmarczuk at unicaen.fr (Jerzy Karczmarczuk) Date: Thu, 21 Mar 2019 11:10:54 +0100 Subject: [Matplotlib-users] Plotting logging data with dates In-Reply-To: References: Message-ID: <2a633be1-3c48-860c-4fb6-49030014c9b3@unicaen.fr> Le 21/03/2019 ? 01:47, Kipton Moravec explains his situation, including : > I did not know what to ask for to Google. OK, my last attempt to /*try to*/ help you, since it is really a task, to help somebody who doesn't know what he wants, concretely... You asked in your first post: > For the plot of the day, probably a vertical line every hour and a > label every 3 hours. So, I issued a Google query "/matplotlib For the plot of the day, probably a vertical line every hour and a label every 3 hours/". Just it. More than 600 000 results in 0.75 seconds. Some examples: /Labeling time series - All this - Dr. Drang/ -- some codes to lookup /4. Visualization with Matplotlib - Python Data Science Handbook [Book]/ -- a really comprehensive chapter with plenty of time labelled graphs ... many others, e.g. /Python Plotting With Matplotlib (Guide) ? Real Python/ -- a series of reasonable, even if superficial tutorials on many Python related issues, this one includes also some plotting with Pandas. /Top 50 matplotlib Visualizations - The Master Plots (w/ Full Python code)/ -- many, many examples of plots with very different label styles, including time-related data. Inspire yourself. ====== etcEtcEtcEtc... I don't cite the URLs, since you might choose a different question from your catalog (or repeat this above) yourself. Jerzy Karczmarczuk -------------- next part -------------- An HTML attachment was scrubbed... URL: From ndbecker2 at gmail.com Thu Mar 21 10:44:31 2019 From: ndbecker2 at gmail.com (Neal Becker) Date: Thu, 21 Mar 2019 10:44:31 -0400 Subject: [Matplotlib-users] Autoscaling after adding patches (and annotations) Message-ID: In this code, I add polygons and text annotations. The result is plotted on axes scaled [0..1], not autoscaled to match the data. If I add e.g., a scatterplot of the polygon centers, the result in scaled fine. What's an easy way to get the axes to scale correctly in this example? for i, center in enumerate(centers): circle = mpl.patches.RegularPolygon ((center.real, center.imag), 6, 1, fill=False, clip_on=False, linestyle='-', orientation=30*pi/180) ax.add_artist (circle) ax.annotate (beam_colors[i], xy=(center.real, center.imag), textcoords='offset points', xytext=(-3,3)) plt.show() From madicken.munk at gmail.com Mon Mar 18 11:40:37 2019 From: madicken.munk at gmail.com (Madicken Munk) Date: Mon, 18 Mar 2019 10:40:37 -0500 Subject: [Matplotlib-users] 2019 John Hunter Excellence in Plotting Contest Message-ID: In memory of John Hunter, we are pleased to be reviving the SciPy John Hunter Excellence in Plotting Competition for 2019. This open competition aims to highlight the importance of data visualization to scientific progress and showcase the capabilities of open source software. Participants are invited to submit scientific plots to be judged by a panel. The winning entries will be announced and displayed at the conference. John Hunter?s family and NumFocus are graciously sponsoring cash prizes for the winners in the following amounts: - 1st prize: $1000 - 2nd prize: $750 - 3rd prize: $500 - Entries must be submitted by June, 8th to the form at https://goo.gl/forms/cFTB3FUBrMPfQ7Vz1 - Winners will be announced at Scipy 2019 in Austin, TX. - Participants do not need to attend the Scipy conference. - Entries may take the definition of ?visualization? rather broadly. Entries may be, for example, a traditional printed plot, an interactive visualization for the web, or an animation. - Source code for the plot must be provided, in the form of Python code and/or a Jupyter notebook, along with a rendering of the plot in a widely used format. This may be, for example, PDF for print, standalone HTML and Javascript for an interactive plot, or MPEG-4 for a video. If the original data can not be shared for reasons of size or licensing, "fake" data may be substituted, along with an image of the plot using real data. - Each entry must include a 300-500 word abstract describing the plot and its importance for a general scientific audience. - Entries will be judged on their clarity, innovation and aesthetics, but most importantly for their effectiveness in communicating a real-world problem. Entrants are encouraged to submit plots that were used during the course of research or work, rather than merely being hypothetical. - SciPy reserves the right to display any and all entries, whether prize-winning or not, at the conference, use in any materials or on its website, with attribution to the original author(s). SciPy John Hunter Excellence in Plotting Competition Co-Chairs Hannah Aizenman Thomas Caswell Madicken Munk Nelle Varoquaux -------------- next part -------------- An HTML attachment was scrubbed... URL: From pmhobson at gmail.com Thu Mar 21 18:05:11 2019 From: pmhobson at gmail.com (Paul Hobson) Date: Thu, 21 Mar 2019 15:05:11 -0700 Subject: [Matplotlib-users] Pycharm matplotlib issue In-Reply-To: <6EC252F9-6A96-47F3-8204-872F7CE9E525@gmail.com> References: <6EC252F9-6A96-47F3-8204-872F7CE9E525@gmail.com> Message-ID: Could provide more detail? - How did you trigger the error? - Does it only happen in pycharm? - What code are you running? - Which version of matplotlib? - Which version of python? On Thu, Mar 21, 2019 at 2:03 PM Dawid Niezg?dka wrote: > Good evening, > > working with the PyCharm IDE, I?ve encountered a following problem with > matplotlib: AttributeError: module 'matplotlib' has no attribute ?artist?. > Unfortunately, there are few documented solution out there in the > internet. I?ve found suggestions to reinstall matplotlib (I did, to no > avail) or to change an environment (same as before). > Do you know any solution to this problem? I?d be grateful for your help. > > Best regards, > Dawid > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pmhobson at gmail.com Thu Mar 21 18:21:12 2019 From: pmhobson at gmail.com (Paul Hobson) Date: Thu, 21 Mar 2019 15:21:12 -0700 Subject: [Matplotlib-users] Writing a custom Scale class In-Reply-To: References: Message-ID: When the axes limits go beyond the bounds of your dataframe, how should the ticks be labeled? On Thu, Mar 21, 2019 at 2:03 PM Konstantin Miller < konstantin.miller at gmail.com> wrote: > Hi, > > I have a time series with two values x(t) and y(t), stored in a Pandas > data frame df with columns DateTime, ValueX, ValueY. I would like to plot > ValueY vs. ValueX. In addition, I would like to see for each data point on > the graph the date when it was measured. > > My idea was to plot(ValueX, ValueY) and then somehow set the labels to > DateTime. But not only the visible tick labels. Rather, when I move my > mouse over the plot, I would like to see (DateTime, ValueY) for each > point, rather then (ValueX, ValueY). > > Or, another way to see it is, that I would like to plot ValueY vs. > DateTime, but scale the x-axis as ValueX. > > My take was to plt.plot(df.index, df.ValueX), and to write a custom Scale > module that receives the data frame upon construction and that scales the > x-axis as ValueX and formats the labels as DateTime. > > I managed to have the right scaling of my x-axis but I can't see any ticks > nor tick labels. And when I hover the mouse over the plot, I see (x=nan, > y=). > > I appreciate any help! :) It seems that the documentation for such > low-level functionality is sometimes a bit scarce :) > > Here is a minimum working example: > > import matplotlib.scale > import matplotlib.transforms > import matplotlib.pyplot as plt > from matplotlib.ticker import AutoLocator, FixedLocator, FuncFormatter, > MaxNLocator, ScalarFormatter > import numpy as np > from numpy import ma > import pandas as pd > > class Scaler(matplotlib.scale.ScaleBase): > > name = 'scaler' > > def __init__(self, axis, df, **kwargs): > matplotlib.scale.ScaleBase.__init__(self) > self.df = df > > def get_transform(self): > return self.Transform(self.df) > > def limit_range_for_scale(self, vmin, vmax, minpos): > min_ = max(vmin, self.df.index.min()) > max_ = min(vmax, self.df.index.max()) > return min_, max_ > > def set_default_locators_and_formatters(self, axis): > axis.set_major_locator(AutoLocator()) > axis.set_major_formatter(ScalarFormatter()) > > class Transform(matplotlib.transforms.Transform): > input_dims = 1 > output_dims = 1 > is_separable = True > has_inverse = True > > def __init__(self, df): > matplotlib.transforms.Transform.__init__(self) > self.df = df > > def transform_non_affine(self, x): > if x.ndim > 1: > assert x.ndim == 2 and x.shape[1] == 1 > y = ma.masked_array(np.zeros_like(x), mask=[False for _ in x]) > for i in range(x.shape[0]): > if x.ndim == 1: > if (int(x[i]) != x[i]) or (x[i] not in df.index): > y.mask[i] = True > else: > y[i] = self.df.at[int(x[i]), 'x'] > else: > if (int(x[i, 0]) != x[i, 0]) or (x[i, 0] not in > df.index): > y.mask[i] = True > else: > y[i, 0] = self.df.at[int(x[i, 0]), 'x'] > return y > > def inverted(self): > return Scaler.InvertedTransform(self.df) > > class InvertedTransform(matplotlib.transforms.Transform): > input_dims = 1 > output_dims = 1 > is_separable = True > has_inverse = True > > def __init__(self, df): > matplotlib.transforms.Transform.__init__(self) > self.df = df > > def transform_non_affine(self, x): > if x.ndim > 1: > assert x.ndim == 2 and x.shape[1] == 1 > y = ma.masked_array(np.zeros_like(x), mask=[False for _ in x]) > for i in range(x.shape[0]): > if x.ndim == 1: > if x[i] not in df['x']: > y.mask[i] = True > else: > y[i] = self.df.loc[self.df['x'] == x[i], > :].index[0] > else: > if x[i, 0] not in df['x']: > y.mask[i] = True > else: > y[i, 0] = self.df.loc[self.df['x'] == x[i, 0], > :].index[0] > return y > > def inverted(self): > return Scaler.Transform(self.df) > > matplotlib.scale.register_scale(Scaler) > > df = pd.DataFrame(index=range(1, 11), data={'x': [1, 1.5, 3, 3.5, 5, 5.5, > 7, 7.5, 9, 9.5], 'y': range(1, 11)}) > fig = plt.figure() > ax = fig.add_subplot(1, 1, 1) > ax.plot(df.index, df['y']) > ax.set_xlim([df.index[0], df.index[-1]]) > ax.set_xscale('scaler', df=df) > > Cheers > Konstantin > > -- > To send me an encrypted email, download my public key from pgp.mit.edu > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jni.soma at gmail.com Fri Mar 22 00:43:18 2019 From: jni.soma at gmail.com (Juan Nunez-Iglesias) Date: Fri, 22 Mar 2019 15:43:18 +1100 Subject: [Matplotlib-users] Autoscaling after adding patches (and annotations) In-Reply-To: References: Message-ID: <06BE00B5-9529-4698-925B-B1D0CFDE5A75@gmail.com> > What's an > easy way to get the axes to scale correctly in this example? Have you tried `ax.autoscale_view`? https://matplotlib.org/api/_as_gen/matplotlib.axes.Axes.autoscale_view.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ndbecker2 at gmail.com Fri Mar 22 06:51:54 2019 From: ndbecker2 at gmail.com (Neal Becker) Date: Fri, 22 Mar 2019 06:51:54 -0400 Subject: [Matplotlib-users] Autoscaling after adding patches (and annotations) In-Reply-To: <06BE00B5-9529-4698-925B-B1D0CFDE5A75@gmail.com> References: <06BE00B5-9529-4698-925B-B1D0CFDE5A75@gmail.com> Message-ID: Yes, that doesn't work. It just autoscales to a tiny portion of the data. In my example, I generate the xy coordinates for the centers of hexagons that tile a square area. The code adds the hexagons using add_artist. Also, the centers of the hexagons are annotated. Neither of these operations causes the axes to scale correctly. If I add a step to plot the centers of the hexagons, using e.g., scatter, then the axes are scaled correctly. For now, I'm just adding the scatter plot with alpha=0 to get the scaling correct. But I still don't know a less klugey way to do it. On Fri, Mar 22, 2019 at 12:43 AM Juan Nunez-Iglesias wrote: > What's an > easy way to get the axes to scale correctly in this example? > > > Have you tried `ax.autoscale_view`? > > https://matplotlib.org/api/_as_gen/matplotlib.axes.Axes.autoscale_view.html > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elch.rz at ruetz-online.de Fri Mar 22 09:48:15 2019 From: elch.rz at ruetz-online.de (Elan Ernest) Date: Fri, 22 Mar 2019 14:48:15 +0100 Subject: [Matplotlib-users] Autoscaling after adding patches (and annotations) In-Reply-To: References: Message-ID: <06a93c6b-bf54-0578-5108-26a73a8d9d6c@ruetz-online.de> To add a patch to an axes use `ax.add_patch()`. If you have several patches, consider using a collection, as shown in https://matplotlib.org/gallery/shapes_and_collections/collections.html or https://matplotlib.org/gallery/shapes_and_collections/patch_collection.html Am 21.03.2019 um 15:44 schrieb Neal Becker: > In this code, I add polygons and text annotations. The result is plotted on > axes scaled [0..1], not autoscaled to match the data. If I add e.g., a > scatterplot of the polygon centers, the result in scaled fine. What's an > easy way to get the axes to scale correctly in this example? > > for i, center in enumerate(centers): > circle = mpl.patches.RegularPolygon ((center.real, center.imag), 6, 1, > fill=False, clip_on=False, linestyle='-', orientation=30*pi/180) > ax.add_artist (circle) > ax.annotate (beam_colors[i], xy=(center.real, center.imag), > textcoords='offset points', xytext=(-3,3)) > plt.show() > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > > From ndbecker2 at gmail.com Fri Mar 22 10:38:10 2019 From: ndbecker2 at gmail.com (Neal Becker) Date: Fri, 22 Mar 2019 10:38:10 -0400 Subject: [Matplotlib-users] Autoscaling after adding patches (and annotations) In-Reply-To: <06a93c6b-bf54-0578-5108-26a73a8d9d6c@ruetz-online.de> References: <06a93c6b-bf54-0578-5108-26a73a8d9d6c@ruetz-online.de> Message-ID: OK, using ax.add_patch() together with ax.autoscale_view() (after adding all patches) gives the desired result. Thanks! On Fri, Mar 22, 2019 at 10:04 AM Elan Ernest wrote: > To add a patch to an axes use `ax.add_patch()`. > > If you have several patches, consider using a collection, as shown in > https://matplotlib.org/gallery/shapes_and_collections/collections.html > or > https://matplotlib.org/gallery/shapes_and_collections/patch_collection.html > > Am 21.03.2019 um 15:44 schrieb Neal Becker: > > In this code, I add polygons and text annotations. The result is > plotted on > > axes scaled [0..1], not autoscaled to match the data. If I add e.g., a > > scatterplot of the polygon centers, the result in scaled fine. What's an > > easy way to get the axes to scale correctly in this example? > > > > for i, center in enumerate(centers): > > circle = mpl.patches.RegularPolygon ((center.real, center.imag), 6, > 1, > > fill=False, clip_on=False, linestyle='-', orientation=30*pi/180) > > ax.add_artist (circle) > > ax.annotate (beam_colors[i], xy=(center.real, center.imag), > > textcoords='offset points', xytext=(-3,3)) > > plt.show() > > > > > > _______________________________________________ > > Matplotlib-users mailing list > > Matplotlib-users at python.org > > https://mail.python.org/mailman/listinfo/matplotlib-users > > > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.isaac at gmail.com Fri Mar 22 15:03:55 2019 From: alan.isaac at gmail.com (Alan Isaac) Date: Fri, 22 Mar 2019 15:03:55 -0400 Subject: [Matplotlib-users] animation with FuncAnimation (mpl 3.0.2) Message-ID: <1bedc801-e438-1dfe-bd9f-77d0f6a592d2@gmail.com> I think I found a bug, and I have a question. Consider the code below. 1. Although frames=10, `animate` is called 11 times, twice with an argument of 0. (The `print` calls show this.) I suspect this is a bug? 2. Why is the assignment of the FuncAnimation instance to a name required for the animation to work, and exactly how does this trick work? How could I change this example to avoid this hidden magic? Thank you, Alan Isaac import random import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation fig, ax = plt.subplots() xs, ys = [],[] l1, = ax.plot(xs, ys, 'b.') ax.set_xlim(0,10) ax.set_ylim(0,10) def animate(i): print(i) xs.append(random.random()*10) ys.append(random.random()*10) l1.set_data(xs, ys) ani = FuncAnimation(fig, animate, frames=10, interval=200, repeat=False) plt.show() From efiring at hawaii.edu Fri Mar 22 15:41:45 2019 From: efiring at hawaii.edu (Eric Firing) Date: Fri, 22 Mar 2019 09:41:45 -1000 Subject: [Matplotlib-users] animation with FuncAnimation (mpl 3.0.2) In-Reply-To: <1bedc801-e438-1dfe-bd9f-77d0f6a592d2@gmail.com> References: <1bedc801-e438-1dfe-bd9f-77d0f6a592d2@gmail.com> Message-ID: On 2019/03/22 9:03 AM, Alan Isaac wrote: > I think I found a bug, and I have a question. > Consider the code below. > > 1. Although frames=10, `animate` is called 11 times, twice with an > argument of 0. > (The `print` calls show this.) I suspect this is a bug? It's not a bug--it's intentional and documented--but I agree it is not what one might expect. The problem is that in general animations require an initialization followed by generation of the frames. If no "init_func" argument is supplied for the initialization, the frame-generator (your animate() function) is used, leading to the double call. Since you are doing your initialization in the body of the script, I think you could eliminate the double call to animate(0) by supplying a do-nothing init_func argument to FuncAnimation. > > 2. Why is the assignment of the FuncAnimation instance to a name > required for the animation to work, and exactly how does this trick work? > How could I change this example to avoid this hidden magic? This is a basic aspect of the Python language: when the last reference to an object is removed, the object goes away. Assigning a name to the FuncAnimation instance keeps it alive so that it can do its work when the blocking "plt.show()" is called. Eric > > Thank you, > Alan Isaac > > import random > import matplotlib.pyplot as plt > from matplotlib.animation import FuncAnimation > > fig, ax = plt.subplots() > xs, ys = [],[] > l1, = ax.plot(xs, ys, 'b.') > ax.set_xlim(0,10) > ax.set_ylim(0,10) > > def animate(i): > ??? print(i) > ??? xs.append(random.random()*10) > ??? ys.append(random.random()*10) > ??? l1.set_data(xs, ys) > > ani = FuncAnimation(fig, animate, frames=10, interval=200, repeat=False) > plt.show() > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users From alan.isaac at gmail.com Fri Mar 22 16:08:38 2019 From: alan.isaac at gmail.com (Alan Isaac) Date: Fri, 22 Mar 2019 16:08:38 -0400 Subject: [Matplotlib-users] animation with FuncAnimation (mpl 3.0.2) In-Reply-To: References: <1bedc801-e438-1dfe-bd9f-77d0f6a592d2@gmail.com> Message-ID: On 3/22/2019 3:41 PM, Eric Firing wrote: > It's not a bug--it's intentional and documented--but I agree it is not what one might expect. Oh I see, it is documented under `init_func`. Thanks! Perhaps it shd also be documented under `func`. (That wd have helped me.) > This is a basic aspect of the Python language: when the last reference to an object is removed, the object goes away.? Assigning a name to the FuncAnimation instance keeps it alive so that it can do its work when the?blocking?"plt.show()"?is?called. This approach seems to depend sensitively on the timing of garbage collection. Is it part of the Python specification that a variable created in a scope will ensure the object's existence until the scope is exited, even if the variable is unused? Is that guaranteed to work regardless of the Python implementation? (I searched but did not find an answer to this question.) And it still seems like magic to me: how is matplotlib finding the object? For example, if mpl registered the object upon creation, it seems like the assignment would not matter. But the assignment does matter, so some other approach is used. Thanks! Alan From efiring at hawaii.edu Fri Mar 22 16:34:47 2019 From: efiring at hawaii.edu (Eric Firing) Date: Fri, 22 Mar 2019 10:34:47 -1000 Subject: [Matplotlib-users] animation with FuncAnimation (mpl 3.0.2) In-Reply-To: References: <1bedc801-e438-1dfe-bd9f-77d0f6a592d2@gmail.com> Message-ID: On 2019/03/22 10:08 AM, Alan Isaac wrote: > On 3/22/2019 3:41 PM, Eric Firing wrote: >> It's not a bug--it's intentional and documented--but I agree it is not >> what one might expect. > > Oh I see, it is documented under `init_func`.? Thanks! > Perhaps it shd also be documented under `func`.? (That wd have helped me.) > > >> This is a basic aspect of the Python language: when the last reference >> to an object is removed, the object goes away.? Assigning a name to >> the FuncAnimation instance keeps it alive so that it can do its work >> when the?blocking?"plt.show()"?is?called. > > > This approach seems to depend sensitively on the timing of garbage > collection. It doesn't, because as long as there is a reference to an object, and it is not a cyclic reference in which there are no references from outside to objects in the cycle, the object will remain alive. This is the original Python method for deciding when to delete an object and reclaim its memory: reference counting. The object is deleted immediately when its reference count drops to zero. In Python 2, garbage collection was added to handle the problem of reference cycles, supplementing, but by no means replacing, the reference-counting method. In the case of your script, by naming the FuncAnimation instance, you are creating a reference that lasts until the script exits. > Is it part of the Python specification that a variable created in a scope > will ensure the object's existence until the scope is exited, even if the > variable is unused?? Is that guaranteed to work regardless of the Python > implementation? (I searched but did not find an answer to this question.) It's not a matter of the scope in which an object was created, but of the existence of references. If references exist only within a given scope (e.g., name assignments within a function) then those references, and therefore the object, go away when the scope is exited. > > And it still seems like magic to me: how is matplotlib finding the object? > For example, if mpl registered the object upon creation, it seems like the > assignment would not matter.? But the assignment does matter, > so some other approach is used. The purpose of the assignment is just to keep the object alive. The object is using the GUI event loop to trigger events via a timer in the loop. Calling plt.show() starts the loop running--but if in the interim the FuncAnimation object has been deleted because there is no reference to it, then that loop is trying to call functions that no longer exist. Eric > > Thanks! > Alan > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users From vs at it.uu.se Sat Mar 23 19:24:56 2019 From: vs at it.uu.se (Virgil Stokes) Date: Sun, 24 Mar 2019 00:24:56 +0100 Subject: [Matplotlib-users] Seeing index instead of x-value Message-ID: <20e185bf-1983-199c-d4de-434e8254ec5d@it.uu.se> How can one see the index of the x-value and its y-value instead of its x,y-values when moving the cursor inside the x-axis of a 2D matplotlib y vs x figure? N?r du har kontakt med oss p? Uppsala universitet med e-post s? inneb?r det att vi behandlar dina personuppgifter. F?r att l?sa mer om hur vi g?r det kan du l?sa h?r: http://www.uu.se/om-uu/dataskydd-personuppgifter/ E-mailing Uppsala University means that we will process your personal data. For more information on how this is performed, please read here: http://www.uu.se/en/about-uu/data-protection-policy -------------- next part -------------- An HTML attachment was scrubbed... URL: From pranavgarg at gmail.com Tue Mar 26 05:41:44 2019 From: pranavgarg at gmail.com (Pranav Garg) Date: Tue, 26 Mar 2019 15:11:44 +0530 Subject: [Matplotlib-users] Google Season of docs and Anti Grain Geometry Message-ID: Greetings, Recently Google announced a new program named "Google Season of Docs" (GSoD) which is aimed towards ensuring better documentation of open source projects. Anti Grain Geometry (AGG) is a powerful raster graphics library created by Late Maxim Shemanarev, which is used as the primary backend in Matplotlib. However, AGG has a steep learning curve because of lack of documentation and active community development since 2006 (which can further be attributed to lack of documentation). Proper documentation of AGG will not only lead to new tools built upon it but can also revive and reinvigorate its development. Since AGG is an integral part of Matplotlib, I believe that the Matplotlib devs will be able to do this project the justice it deserves and guide the GSoD technical writers properly. I hope that my idea is considered. Warm Regards Pranav Garg -------------- next part -------------- An HTML attachment was scrubbed... URL: From ndbecker2 at gmail.com Thu Mar 28 11:56:32 2019 From: ndbecker2 at gmail.com (Neal Becker) Date: Thu, 28 Mar 2019 11:56:32 -0400 Subject: [Matplotlib-users] plot 2 figures with same color scales Message-ID: I'm trying to make 2 scatter plots where the colors of each point corresponds to the value of a 1d array. I want to do this so that the colors used in the 2 plots are comparable. That is, in plot 1 a violet dot means the same value as on plot 2. I tried the following code. Here values2 is clearly different than values1. But it appears that the plots are colored with the same colors. And the colorbar scales are different. What I want is to have the colorbar scales be the same, and the colors on the plot are different. So for example, if point #1 on plot 1 has a value of 0.4, and point #1 on plot 2 has a value of 0.5, the colors used to represent given values on the 2 plots are the same. I believe that without colorbar, just using scatter with specific c=value, I do get this result. But adding colorbar I think changes all the colors. Any suggestions? import numpy as np pts = np.random.uniform (0, 1, 100) + 1j*np.random.uniform(0, 1, 100) values1 = np.random.uniform(0, 1, 100) #values2 = np.random.uniform(0.2, 1, 100) values2 = values1 * 0.8 + 0.2 import matplotlib.pyplot as plt for value in (values1, values2): fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) cmap=plt.get_cmap('plasma') blah = ax.scatter (pts.real, pts.imag, c=value, s=10) blah.set_array (value) fig.colorbar (blah) plt.show() From ben.v.root at gmail.com Thu Mar 28 11:59:46 2019 From: ben.v.root at gmail.com (Benjamin Root) Date: Thu, 28 Mar 2019 11:59:46 -0400 Subject: [Matplotlib-users] plot 2 figures with same color scales In-Reply-To: References: Message-ID: This is a similar problem to that of plotting two imshow()'s. You should be able to pass vmin/vmax arguments to scatter, I believe. Ben On Thu, Mar 28, 2019 at 11:57 AM Neal Becker wrote: > I'm trying to make 2 scatter plots where the colors of each point > corresponds to the value of a 1d array. > > I want to do this so that the colors used in the 2 plots are comparable. > That is, in plot 1 a violet dot means the same value as on plot 2. > > I tried the following code. Here values2 is clearly different than > values1. > But it appears that the plots are colored with the same colors. And the > colorbar scales are different. What I want is to have the colorbar scales > be the same, and the colors on the plot are different. > > So for example, if point #1 on plot 1 has a value of 0.4, and point #1 on > plot 2 has a value of 0.5, the colors used to represent given values on > the > 2 plots are the same. I believe that without colorbar, just using scatter > with specific c=value, I do get this result. But adding colorbar I think > changes all the colors. > > Any suggestions? > > > import numpy as np > pts = np.random.uniform (0, 1, 100) + 1j*np.random.uniform(0, 1, 100) > values1 = np.random.uniform(0, 1, 100) > #values2 = np.random.uniform(0.2, 1, 100) > values2 = values1 * 0.8 + 0.2 > > import matplotlib.pyplot as plt > for value in (values1, values2): > fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) > cmap=plt.get_cmap('plasma') > blah = ax.scatter (pts.real, pts.imag, c=value, s=10) > blah.set_array (value) > fig.colorbar (blah) > plt.show() > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bruno.pagani at astrophysics.eu Thu Mar 28 12:00:05 2019 From: bruno.pagani at astrophysics.eu (Bruno Pagani) Date: Thu, 28 Mar 2019 17:00:05 +0100 Subject: [Matplotlib-users] plot 2 figures with same color scales In-Reply-To: References: Message-ID: <87EFAA56-0292-45B4-AC4E-2871EFDE3CF5@astrophysics.eu> Maybe I missed something, but wouldn?t just fixing vmin and vmax in the scatter do the job? Regards, Bruno Le 28 mars 2019 16:56:32 GMT+01:00, Neal Becker a ?crit : >I'm trying to make 2 scatter plots where the colors of each point >corresponds to the value of a 1d array. > >I want to do this so that the colors used in the 2 plots are >comparable. >That is, in plot 1 a violet dot means the same value as on plot 2. > >I tried the following code. Here values2 is clearly different than >values1. >But it appears that the plots are colored with the same colors. And >the >colorbar scales are different. What I want is to have the colorbar >scales >be the same, and the colors on the plot are different. > >So for example, if point #1 on plot 1 has a value of 0.4, and point #1 >on >plot 2 has a value of 0.5, the colors used to represent given values on >the >2 plots are the same. I believe that without colorbar, just using >scatter >with specific c=value, I do get this result. But adding colorbar I >think >changes all the colors. > >Any suggestions? > > >import numpy as np >pts = np.random.uniform (0, 1, 100) + 1j*np.random.uniform(0, 1, 100) >values1 = np.random.uniform(0, 1, 100) >#values2 = np.random.uniform(0.2, 1, 100) >values2 = values1 * 0.8 + 0.2 > >import matplotlib.pyplot as plt >for value in (values1, values2): > fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) > cmap=plt.get_cmap('plasma') > blah = ax.scatter (pts.real, pts.imag, c=value, s=10) > blah.set_array (value) > fig.colorbar (blah) >plt.show() > > >_______________________________________________ >Matplotlib-users mailing list >Matplotlib-users at python.org >https://mail.python.org/mailman/listinfo/matplotlib-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From pmhobson at gmail.com Thu Mar 28 12:26:06 2019 From: pmhobson at gmail.com (Paul Hobson) Date: Thu, 28 Mar 2019 09:26:06 -0700 Subject: [Matplotlib-users] plot 2 figures with same color scales In-Reply-To: References: Message-ID: Hey Neal, I modified your example a bit, is that what you want? import numpy as np import matplotlib.pyplot as plt pts = np.random.uniform(0, 1, 100) + 1j * np.random.uniform(0, 1, 100) values1 = np.random.uniform(0, 1, 100) values2 = values1 * 0.1 + 0.2 global_max = np.max([values1.max(), values2.max()]) global_min = np.min([values1.min(), values2.min()]) fig, axes = plt.subplots(ncols=2) for ax, value in zip(axes, [values1, values2]): blah = ax.scatter(pts.real, pts.imag, c=value, s=10, vmin=global_min, vmax=global_max) cbar = fig.colorbar(blah, ax=ax) fig.tight_layout() On Thu, Mar 28, 2019 at 8:57 AM Neal Becker wrote: > I'm trying to make 2 scatter plots where the colors of each point > corresponds to the value of a 1d array. > > I want to do this so that the colors used in the 2 plots are comparable. > That is, in plot 1 a violet dot means the same value as on plot 2. > > I tried the following code. Here values2 is clearly different than > values1. > But it appears that the plots are colored with the same colors. And the > colorbar scales are different. What I want is to have the colorbar scales > be the same, and the colors on the plot are different. > > So for example, if point #1 on plot 1 has a value of 0.4, and point #1 on > plot 2 has a value of 0.5, the colors used to represent given values on > the > 2 plots are the same. I believe that without colorbar, just using scatter > with specific c=value, I do get this result. But adding colorbar I think > changes all the colors. > > Any suggestions? > > > import numpy as np > pts = np.random.uniform (0, 1, 100) + 1j*np.random.uniform(0, 1, 100) > values1 = np.random.uniform(0, 1, 100) > #values2 = np.random.uniform(0.2, 1, 100) > values2 = values1 * 0.8 + 0.2 > > import matplotlib.pyplot as plt > for value in (values1, values2): > fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) > cmap=plt.get_cmap('plasma') > blah = ax.scatter (pts.real, pts.imag, c=value, s=10) > blah.set_array (value) > fig.colorbar (blah) > plt.show() > > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From story645 at gmail.com Thu Mar 28 17:01:47 2019 From: story645 at gmail.com (Hannah) Date: Thu, 28 Mar 2019 17:01:47 -0400 Subject: [Matplotlib-users] Seeking GSOC 2019 Students Message-ID: Hello, Matplotlib is participating in Google Summer of Code this year under the Numfocus umbrella. Applications are due April 9. Please apply and encourage students you may think are a good fit to apply. Application instructions are at https://github.com/numfocus/gsoc Applicants are welcome and encouraged to propose their own projects or build on the project we have proposed, which is a collaboration with the geopandas library. GeoPandas allows users to work with geospatial data in Python by providing geospatial operations in Pandas and a high-level interface to multiple geometries to shapely. It also facilitates exploratory visualization of geospatial data via descartes and matplotlib. The visualization interface in geopandas is currently on the rough side; it generates simple polygon based maps that are inconsistent in terms of supporting matplotlib features such as color mapping and color bars. Find more information at https://github.com/matplotlib/matplotlib/wiki/GSOC-2019-Ideas-Page Please respond to this email with questions or ask here: https://gitter.im/matplotlib/matplotlib?utm_source=share-link&utm_medium=link&utm_campaign=share-link Thank you, -------------- next part -------------- An HTML attachment was scrubbed... URL: From ijbrewster at alaska.edu Fri Mar 29 13:43:28 2019 From: ijbrewster at alaska.edu (Israel Brewster) Date: Fri, 29 Mar 2019 09:43:28 -0800 Subject: [Matplotlib-users] Matplotlib, Qt, and borders Message-ID: <5391D764-3B86-49C7-A51C-185E50A7B7D1@alaska.edu> I?m new to matplotlib, and using it in conjunction with Qt as per https://matplotlib.org/gallery/user_interfaces/embedding_in_qt_sgskip.html , which works well. However, I?m struggling with borders, especially as the user resizes the window. What it looks like is that the left, right, bottom and top parameters to subplots_adjust are in percents - is that correct? If so, is there a way to change it to pixels? As things stand, when the user adjusts the size of the window, the ?gap? between an edge of the graph and the edge of the container changes. More troubling is that as the window gets smaller, the graph labels get cut off. Ideally I?d like to be able to say ?fit the entire graph (including axes labels) inside the parent object with x number of pixels padding on each side?. Of course there would be some minimum size you couldn?t effectively go below. Is that possible? --- Israel Brewster Software Engineer Alaska Volcano Observatory Geophysical Institute - UAF 2156 Koyukuk Drive Fairbanks AK 99775-7320 Work: 907-474-5172 cell: 907-328-9145 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tcaswell at gmail.com Fri Mar 29 15:44:03 2019 From: tcaswell at gmail.com (Thomas Caswell) Date: Fri, 29 Mar 2019 15:44:03 -0400 Subject: [Matplotlib-users] Matplotlib, Qt, and borders In-Reply-To: <5391D764-3B86-49C7-A51C-185E50A7B7D1@alaska.edu> References: <5391D764-3B86-49C7-A51C-185E50A7B7D1@alaska.edu> Message-ID: Israel, You probably want to use `tight_layout` or `constrained_layout` on the embedded figure. Setting axes position in pixels would get messy if you have more than one Axes in the figure and you want to handle resizing. See https://matplotlib.org/tutorials/advanced/transforms_tutorial.html#transformations-tutorial for the stacked coordinate systems that Matplotlib uses. Tom On Fri, Mar 29, 2019 at 1:44 PM Israel Brewster wrote: > I?m new to matplotlib, and using it in conjunction with Qt as per > https://matplotlib.org/gallery/user_interfaces/embedding_in_qt_sgskip.html, > which works well. However, I?m struggling with borders, especially as the > user resizes the window. > > What it looks like is that the left, right, bottom and top parameters to > subplots_adjust are in percents - is that correct? If so, is there a way to > change it to pixels? As things stand, when the user adjusts the size of the > window, the ?gap? between an edge of the graph and the edge of the > container changes. More troubling is that as the window gets smaller, the > graph labels get cut off. > > Ideally I?d like to be able to say ?fit the entire graph (including axes > labels) inside the parent object with x number of pixels padding on each > side?. Of course there would be some minimum size you couldn?t effectively > go below. Is that possible? > --- > Israel Brewster > Software Engineer > Alaska Volcano Observatory > Geophysical Institute - UAF > 2156 Koyukuk Drive > Fairbanks AK 99775-7320 > Work: 907-474-5172 > cell: 907-328-9145 > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -- Thomas Caswell tcaswell at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ijbrewster at alaska.edu Fri Mar 29 16:08:02 2019 From: ijbrewster at alaska.edu (Israel Brewster) Date: Fri, 29 Mar 2019 12:08:02 -0800 Subject: [Matplotlib-users] Matplotlib, Qt, and borders In-Reply-To: References: <5391D764-3B86-49C7-A51C-185E50A7B7D1@alaska.edu> Message-ID: <9ECA59F6-57F6-44BE-81CF-A0D6256B95D3@alaska.edu> Tight_layout seems to overlap things in my experience, but I?ll give it another shot. Constrained_layout I?m not familiar with, so definitely something to try. Thanks. I?ve always found pixel layout to be much cleaner than percent layouts, but then I?m used to designing web interfaces with a bunch of objects that need to play together nicely when you resize the window, so this is a significantly different application. That said, I was thinking along the lines of setting the border for the figure, not individual axis, but perhaps that?s not how it works? --- Israel Brewster Software Engineer Alaska Volcano Observatory Geophysical Institute - UAF 2156 Koyukuk Drive Fairbanks AK 99775-7320 Work: 907-474-5172 cell: 907-328-9145 > On Mar 29, 2019, at 11:44 AM, Thomas Caswell wrote: > > Israel, > > You probably want to use `tight_layout` or `constrained_layout` on the embedded figure. > > Setting axes position in pixels would get messy if you have more than one Axes in the figure and you want to handle resizing. > > See https://matplotlib.org/tutorials/advanced/transforms_tutorial.html#transformations-tutorial for the stacked coordinate systems that Matplotlib uses. > > Tom > > > On Fri, Mar 29, 2019 at 1:44 PM Israel Brewster > wrote: > I?m new to matplotlib, and using it in conjunction with Qt as per https://matplotlib.org/gallery/user_interfaces/embedding_in_qt_sgskip.html , which works well. However, I?m struggling with borders, especially as the user resizes the window. > > What it looks like is that the left, right, bottom and top parameters to subplots_adjust are in percents - is that correct? If so, is there a way to change it to pixels? As things stand, when the user adjusts the size of the window, the ?gap? between an edge of the graph and the edge of the container changes. More troubling is that as the window gets smaller, the graph labels get cut off. > > Ideally I?d like to be able to say ?fit the entire graph (including axes labels) inside the parent object with x number of pixels padding on each side?. Of course there would be some minimum size you couldn?t effectively go below. Is that possible? > --- > Israel Brewster > Software Engineer > Alaska Volcano Observatory > Geophysical Institute - UAF > 2156 Koyukuk Drive > Fairbanks AK 99775-7320 > Work: 907-474-5172 > cell: 907-328-9145 > > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > > > -- > Thomas Caswell > tcaswell at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tcaswell at gmail.com Sat Mar 30 16:37:06 2019 From: tcaswell at gmail.com (Thomas Caswell) Date: Sat, 30 Mar 2019 16:37:06 -0400 Subject: [Matplotlib-users] 3.0.3: error: Failed to download jquery-ui In-Reply-To: <11964.1551709932@dschgrazlin2.units.it> References: <11964.1551709932@dschgrazlin2.units.it> Message-ID: Gabriele, This is directly related to Matplotlib as we changed how jquery is bundled / installed in 3.0.3 and 2.2.4. How are you installing Matplotlib / downloading the source? The place where that error message is suggesting you unpack the files is not correct. Tom On Mon, Mar 4, 2019 at 9:32 AM wrote: > hello > > apologies: this isn't actually directly related to matplotlib, but I > hope someone on this list will be able to give me some clue > > Installation of latest 3.0.3 (on linux) fails for me with: > > ----8<---- > error: Failed to download jquery-ui. Please download > https://jqueryui.com/resources/download/jquery-ui-1.12.1.zip and extract > it to build/bdist.linux-x86_64/egg/matplotlib/backends/web_backend/. > ---->8---- > > AFAICS, the actual download is done in setupext.py, via a call to > Request (from urllib or urllib2); > > Unfortunately (for me) I don't speak python; hence the help request: > > is there any flag I could raise in setupext.py or somewhere else to > get debugging output from Request that can help me to understand what > is going on? > > I suspect some problem with certificates or the like; > > As a matter of fact, if I manually download the jquery-ui-1.12.1 > zip and redefine url to > > "file:/home/balducci/tmp/install-us-d/matplotlib-3.0.2.d/jquery-ui-1.12.1.zip" > in setup.py, everything works fine... > > I have tried some recipes found on the web to no avail, eg: > > httplib.HTTPConnection.debuglevel = 1 > > > > I thank you very much in advance for any help > > > ciao > -gabriele > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -- Thomas Caswell tcaswell at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From shreeniket.joshi at gmail.com Sun Mar 31 08:18:04 2019 From: shreeniket.joshi at gmail.com (Shreeniket Joshi) Date: Sun, 31 Mar 2019 17:48:04 +0530 Subject: [Matplotlib-users] Error while installing Matplotlib on windows 10 python 3.7 Message-ID: Hello I tried installing matplotlib through anaconda command prompt, I could install numpy and scipy but while installing Matplotlib I am facing this error. Please help:: Preparing transaction: done Verifying transaction: failed CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QConeGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QConeMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCuboidGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCuboidMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCylinderGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCylinderMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QDiffuseMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QDiffuseSpecularMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QExtrudedTextGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QExtrudedTextMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QFirstPersonCameraController' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QForwardRenderer' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QGoochMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QMetalRoughMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QMorphPhongMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QNormalDiffuseMapAlphaMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QNormalDiffuseMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QNormalDiffuseSpecularMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QOrbitCameraController' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPerVertexColorMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPhongAlphaMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPhongMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPlaneGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPlaneMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QSkyboxEntity' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QSphereGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QSphereMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QText2DEntity' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTextureMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTexturedMetalRoughMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTorusGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTorusMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DExtras' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DExtrasDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DExtrasVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DWindow' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAbstractActionInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAbstractAxisInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAbstractPhysicalDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAction' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QActionInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAnalogAxisInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAxis' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAxisAccumulator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAxisSetting' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QButtonAxisInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputAspect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputChord' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputSequence' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputSettings' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyEventPtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyboardDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyboardHandler' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QLogicalDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseEventPtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseHandler' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChange' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChangeBase' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChangeBasePtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QWheelEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QWheelEventPtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/Qt3DInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/Qt3DInputDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/Qt3DInputVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtQuickParticles/QtQuickParticles' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtQuickParticles/QtQuickParticlesDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtQuickParticles/QtQuickParticlesVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWebView/QtWebView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWebView/QtWebViewDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWebView/QtWebViewVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractGraphicsShapeItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractItemDelegate' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractItemView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractScrollArea' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractSlider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAccessibleWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAction' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QActionGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QApplication' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QBoxLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QButtonGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCalendarWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCheckBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QColorDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QColormap' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QColumnView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QComboBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCommandLinkButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCommonStyle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCompleter' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDataWidgetMapper' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDateEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDateTimeEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDesktopWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDialogButtonBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDirModel' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDockWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDoubleSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QErrorMessage' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFileDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFileIconProvider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFileSystemModel' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFocusFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFontComboBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFontDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFormLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGestureEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGestureRecognizer' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsAnchor' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsAnchorLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsBlurEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsColorizeEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsDropShadowEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsEllipseItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsGridLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsItemAnimation' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsItemGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLayoutItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLineItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLinearLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsObject' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsOpacityEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsPathItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsPixmapItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsPolygonItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsProxyWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsRectItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsRotation' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsScale' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsScene' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneContextMenuEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneDragDropEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneHelpEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneHoverEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneMouseEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneMoveEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneResizeEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneWheelEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSimpleTextItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsTextItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsTransform' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGridLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGroupBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QHBoxLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QHeaderView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QInputDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemDelegate' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemEditorCreator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemEditorCreatorBase' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemEditorFactory' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QKeyEventTransition' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QKeySequenceEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLCDNumber' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLabel' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLayoutItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLineEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QListView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QListWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QListWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMacCocoaViewContainer' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMacNativeWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMainWindow' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMdiArea' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMdiSubWindow' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMenu' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMenuBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMessageBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMouseEventTransition' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QOpenGLWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPanGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPinchGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPlainTextDocumentLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPlainTextEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QProgressBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QProgressDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QProxyStyle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPushButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QRadioButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QRubberBand' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScrollArea' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScrollBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScroller' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScrollerProperties' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QShortcut' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSizeGrip' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSizePolicy' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSlider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSpacerItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSplashScreen' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSplitter' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSplitterHandle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStackedLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStackedWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStandardItemEditorCreator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStatusBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleFactory' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleHintReturn' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleHintReturnMask' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleHintReturnVariant' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOption' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionComboBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionComplex' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionDockWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionDockWidgetV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFocusRect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFrameV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFrameV3' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionGraphicsItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionGroupBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionHeader' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionMenuItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionProgressBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionProgressBarV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionRubberBand' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionSizeGrip' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionSlider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTab' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabBarBase' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabBarBaseV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabV3' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabWidgetFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabWidgetFrameV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTitleBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolBoxV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItemV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItemV3' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItemV4' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStylePainter' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStylePlugin' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyledItemDelegate' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSwipeGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSystemTrayIcon' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTabBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTabWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableWidgetSelectionRange' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTapAndHoldGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTapGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTextBrowser' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTextEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTileRules' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTimeEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolTip' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeWidgetItemIterator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoCommand' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoStack' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QVBoxLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWhatsThis' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetAction' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetData' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetItemV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWizard' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWizardPage' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QtWidgets' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QtWidgetsDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QtWidgetsVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DAnimation/Qt53DAnimationConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickAnimation/Qt53DQuickAnimationConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickExtras/Qt53DQuickExtrasConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickInput/Qt53DQuickInputConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickRender/Qt53DQuickRenderConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickScene2D/Qt53DQuickScene2DConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Core/Qt5CTestMacros.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Core/Qt5CoreMacros.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5DataVisualization/Qt5DataVisualizationConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Multimedia/Qt5MultimediaConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5NetworkAuth/Qt5NetworkAuthConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Positioning/Qt5PositioningConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Purchasing/Qt5PurchasingConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5QuickControls2/Qt5QuickControls2Config.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5QuickTest/Qt5QuickTestConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5RemoteObjects/Qt5RemoteObjectsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5ScriptTools/Qt5ScriptToolsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5SerialPort/Qt5SerialPortConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5TextToSpeech/Qt5TextToSpeechConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebChannel/Qt5WebChannelConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebEngine/Qt5WebEngineConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebEngineCore/Qt5WebEngineCoreConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebEngineWidgets/Qt5WebEngineWidgetsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/mkspecs/features/data/mac/objc_namespace.sh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/mkspecs/features/uikit/device_destinations.sh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/Qt/labs/folderlistmodel/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/QtQuick/Controls/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/QtQuick/Dialogs/Private/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/QtQuick/PrivateWidgets/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_devtools_resources.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_resources.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_resources_100p.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_resources_200p.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/am.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ar.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/bg.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/bn.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ca.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/cs.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/da.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/de.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/el.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/en-GB.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/en-US.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/es-419.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/es.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/et.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fa.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fi.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fil.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/gu.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/he.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/hi.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/hr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/hu.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/id.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/it.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ja.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/kn.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ko.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/lt.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/lv.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ml.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/mr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ms.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/nb.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/nl.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/pl.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/pt-BR.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/pt-PT.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ro.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ru.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sk.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sl.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sv.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sw.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ta.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/te.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/th.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/tr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/uk.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/vi.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/zh-CN.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/zh-TW.pak' specified in the package manifest cannot be found. Cordially, -Shreeniket Joshi -------------- next part -------------- An HTML attachment was scrubbed... URL: From pmhobson at gmail.com Sun Mar 31 12:04:56 2019 From: pmhobson at gmail.com (Paul Hobson) Date: Sun, 31 Mar 2019 09:04:56 -0700 Subject: [Matplotlib-users] Error while installing Matplotlib on windows 10 python 3.7 In-Reply-To: References: Message-ID: These question is better directed toward the conda community. On Sun, Mar 31, 2019 at 5:18 AM Shreeniket Joshi wrote: > Hello I tried installing matplotlib through anaconda command prompt, I > could install numpy and scipy but while installing Matplotlib I am facing > this error. > > Please help:: > > Preparing transaction: done > Verifying transaction: failed > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QConeGeometry' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QConeMesh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QCuboidGeometry' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QCuboidMesh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QCylinderGeometry' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QCylinderMesh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QDiffuseMapMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QDiffuseSpecularMapMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QExtrudedTextGeometry' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QExtrudedTextMesh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QFirstPersonCameraController' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QForwardRenderer' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QGoochMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QMetalRoughMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QMorphPhongMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QNormalDiffuseMapAlphaMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QNormalDiffuseMapMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QNormalDiffuseSpecularMapMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QOrbitCameraController' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QPerVertexColorMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QPhongAlphaMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QPhongMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QPlaneGeometry' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QPlaneMesh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QSkyboxEntity' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QSphereGeometry' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QSphereMesh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QText2DEntity' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QTextureMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QTexturedMetalRoughMaterial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QTorusGeometry' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/QTorusMesh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/Qt3DExtras' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/Qt3DExtrasDepends' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/Qt3DExtrasVersion' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DExtras/Qt3DWindow' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QAbstractActionInput' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QAbstractAxisInput' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QAbstractPhysicalDevice' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAction' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QActionInput' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QAnalogAxisInput' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAxis' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QAxisAccumulator' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QAxisSetting' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QButtonAxisInput' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QInputAspect' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QInputChord' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QInputSequence' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QInputSettings' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QKeyEventPtr' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QKeyboardDevice' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QKeyboardHandler' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QLogicalDevice' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QMouseDevice' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QMouseEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QMouseEventPtr' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QMouseHandler' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChange' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChangeBase' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChangeBasePtr' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QWheelEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/QWheelEventPtr' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/Qt3DInput/Qt3DInput' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/Qt3DInputDepends' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/Qt3DInput/Qt3DInputVersion' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtQuickParticles/QtQuickParticles' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtQuickParticles/QtQuickParticlesDepends' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtQuickParticles/QtQuickParticlesVersion' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWebView/QtWebView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWebView/QtWebViewDepends' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWebView/QtWebViewVersion' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAbstractButton' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAbstractGraphicsShapeItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAbstractItemDelegate' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAbstractItemView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAbstractScrollArea' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAbstractSlider' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAbstractSpinBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QAccessibleWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAction' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QActionGroup' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QApplication' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QBoxLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QButtonGroup' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QCalendarWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCheckBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QColorDialog' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QColormap' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QColumnView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QComboBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QCommandLinkButton' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QCommonStyle' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCompleter' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QDataWidgetMapper' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDateEdit' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QDateTimeEdit' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QDesktopWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDial' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDialog' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QDialogButtonBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDirModel' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QDockWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QDoubleSpinBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QErrorMessage' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QFileDialog' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QFileIconProvider' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QFileSystemModel' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QFocusFrame' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QFontComboBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QFontDialog' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QFormLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFrame' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGesture' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGestureEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGestureRecognizer' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsAnchor' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsAnchorLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsBlurEffect' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsColorizeEffect' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsDropShadowEffect' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsEffect' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsEllipseItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsGridLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsItemAnimation' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsItemGroup' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsLayoutItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsLineItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsLinearLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsObject' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsOpacityEffect' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsPathItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsPixmapItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsPolygonItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsProxyWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsRectItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsRotation' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsScale' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsScene' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneContextMenuEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneDragDropEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneHelpEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneHoverEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneMouseEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneMoveEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneResizeEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSceneWheelEvent' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsSimpleTextItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsTextItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsTransform' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGraphicsWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QGridLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGroupBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QHBoxLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QHeaderView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QInputDialog' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QItemDelegate' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QItemEditorCreator' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QItemEditorCreatorBase' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QItemEditorFactory' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QKeyEventTransition' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QKeySequenceEdit' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLCDNumber' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLabel' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QLayoutItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLineEdit' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QListView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QListWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QListWidgetItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QMacCocoaViewContainer' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QMacNativeWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QMainWindow' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMdiArea' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QMdiSubWindow' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMenu' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMenuBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QMessageBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QMouseEventTransition' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QOpenGLWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QPanGesture' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QPinchGesture' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QPlainTextDocumentLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QPlainTextEdit' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QProgressBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QProgressDialog' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QProxyStyle' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QPushButton' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QRadioButton' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QRubberBand' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QScrollArea' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScrollBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScroller' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QScrollerProperties' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QShortcut' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSizeGrip' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QSizePolicy' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSlider' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QSpacerItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSpinBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QSplashScreen' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSplitter' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QSplitterHandle' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStackedLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStackedWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStandardItemEditorCreator' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStatusBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyle' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleFactory' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleHintReturn' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleHintReturnMask' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleHintReturnVariant' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOption' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionButton' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionComboBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionComplex' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionDockWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionDockWidgetV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionFocusRect' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionFrame' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionFrameV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionFrameV3' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionGraphicsItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionGroupBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionHeader' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionMenuItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionProgressBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionProgressBarV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionRubberBand' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionSizeGrip' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionSlider' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionSpinBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTab' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTabBarBase' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTabBarBaseV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTabV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTabV3' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTabWidgetFrame' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTabWidgetFrameV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionTitleBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionToolBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionToolBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionToolBoxV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionToolButton' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionViewItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionViewItemV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionViewItemV3' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyleOptionViewItemV4' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStylePainter' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStylePlugin' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QStyledItemDelegate' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QSwipeGesture' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QSystemTrayIcon' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTabBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTabWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTableWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTableWidgetItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTableWidgetSelectionRange' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTapAndHoldGesture' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTapGesture' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTextBrowser' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTextEdit' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTileRules' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTimeEdit' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolBar' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolBox' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QToolButton' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolTip' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTreeWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTreeWidgetItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QTreeWidgetItemIterator' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QUndoCommand' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoGroup' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoStack' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoView' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QVBoxLayout' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWhatsThis' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidget' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QWidgetAction' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QWidgetData' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QWidgetItem' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QWidgetItemV2' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWizard' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QWizardPage' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/include/qt/QtWidgets/QtWidgets' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QtWidgetsDepends' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/include/qt/QtWidgets/QtWidgetsVersion' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt53DAnimation/Qt53DAnimationConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt53DQuickAnimation/Qt53DQuickAnimationConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt53DQuickExtras/Qt53DQuickExtrasConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt53DQuickInput/Qt53DQuickInputConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt53DQuickRender/Qt53DQuickRenderConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt53DQuickScene2D/Qt53DQuickScene2DConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5Core/Qt5CTestMacros.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5Core/Qt5CoreMacros.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5DataVisualization/Qt5DataVisualizationConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5Multimedia/Qt5MultimediaConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5NetworkAuth/Qt5NetworkAuthConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5Positioning/Qt5PositioningConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5Purchasing/Qt5PurchasingConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5QuickControls2/Qt5QuickControls2Config.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5QuickTest/Qt5QuickTestConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5RemoteObjects/Qt5RemoteObjectsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5ScriptTools/Qt5ScriptToolsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5SerialPort/Qt5SerialPortConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5TextToSpeech/Qt5TextToSpeechConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5WebChannel/Qt5WebChannelConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5WebEngine/Qt5WebEngineConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5WebEngineCore/Qt5WebEngineCoreConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5WebEngineWidgets/Qt5WebEngineWidgetsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/lib/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfig.cmake' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/mkspecs/features/data/mac/objc_namespace.sh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/mkspecs/features/uikit/device_destinations.sh' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/qml/Qt/labs/folderlistmodel/qmldir' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path 'Library/qml/QtQuick/Controls/qmldir' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/qml/QtQuick/Dialogs/Private/qmldir' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/qml/QtQuick/PrivateWidgets/qmldir' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/resources/qtwebengine_devtools_resources.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/resources/qtwebengine_resources.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/resources/qtwebengine_resources_100p.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/resources/qtwebengine_resources_200p.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/am.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ar.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/bg.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/bn.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ca.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/cs.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/da.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/de.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/el.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/en-GB.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/en-US.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/es-419.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/es.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/et.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/fa.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/fi.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/fil.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/fr.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/gu.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/he.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/hi.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/hr.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/hu.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/id.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/it.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ja.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/kn.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ko.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/lt.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/lv.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ml.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/mr.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ms.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/nb.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/nl.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/pl.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/pt-BR.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/pt-PT.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ro.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ru.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/sk.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/sl.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/sr.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/sv.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/sw.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/ta.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/te.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/th.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/tr.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/uk.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/vi.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/zh-CN.pak' > specified in the package manifest cannot be found. > > CondaVerificationError: The package for qt located at > C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 > appears to be corrupted. The path > 'Library/translations/qtwebengine_locales/zh-TW.pak' > specified in the package manifest cannot be found. > Cordially, > -Shreeniket Joshi > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users at python.org > https://mail.python.org/mailman/listinfo/matplotlib-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shreeniket.joshi at gmail.com Sun Mar 31 08:10:45 2019 From: shreeniket.joshi at gmail.com (Shreeniket Joshi) Date: Sun, 31 Mar 2019 12:10:45 -0000 Subject: [Matplotlib-users] Error while installing Matplotlib on windows 10 python 3.7 Message-ID: Hello I tried installing matplotlib through anaconda command prompt, I could install numpy and scipy but while installing Matplotlib I am facing this error. Please help:: Preparing transaction: done Verifying transaction: failed CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QConeGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QConeMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCuboidGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCuboidMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCylinderGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QCylinderMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QDiffuseMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QDiffuseSpecularMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QExtrudedTextGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QExtrudedTextMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QFirstPersonCameraController' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QForwardRenderer' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QGoochMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QMetalRoughMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QMorphPhongMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QNormalDiffuseMapAlphaMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QNormalDiffuseMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QNormalDiffuseSpecularMapMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QOrbitCameraController' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPerVertexColorMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPhongAlphaMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPhongMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPlaneGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QPlaneMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QSkyboxEntity' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QSphereGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QSphereMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QText2DEntity' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTextureMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTexturedMetalRoughMaterial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTorusGeometry' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/QTorusMesh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DExtras' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DExtrasDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DExtrasVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DExtras/Qt3DWindow' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAbstractActionInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAbstractAxisInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAbstractPhysicalDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAction' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QActionInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAnalogAxisInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAxis' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAxisAccumulator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QAxisSetting' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QButtonAxisInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputAspect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputChord' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputSequence' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QInputSettings' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyEventPtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyboardDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QKeyboardHandler' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QLogicalDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseDevice' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseEventPtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QMouseHandler' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChange' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChangeBase' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QPhysicalDeviceCreatedChangeBasePtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QWheelEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/QWheelEventPtr' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/Qt3DInput' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/Qt3DInputDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/Qt3DInput/Qt3DInputVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtQuickParticles/QtQuickParticles' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtQuickParticles/QtQuickParticlesDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtQuickParticles/QtQuickParticlesVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWebView/QtWebView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWebView/QtWebViewDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWebView/QtWebViewVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractGraphicsShapeItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractItemDelegate' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractItemView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractScrollArea' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractSlider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAbstractSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAccessibleWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QAction' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QActionGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QApplication' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QBoxLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QButtonGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCalendarWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCheckBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QColorDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QColormap' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QColumnView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QComboBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCommandLinkButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCommonStyle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QCompleter' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDataWidgetMapper' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDateEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDateTimeEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDesktopWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDial' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDialogButtonBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDirModel' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDockWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QDoubleSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QErrorMessage' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFileDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFileIconProvider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFileSystemModel' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFocusFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFontComboBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFontDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFormLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGestureEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGestureRecognizer' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsAnchor' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsAnchorLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsBlurEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsColorizeEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsDropShadowEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsEllipseItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsGridLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsItemAnimation' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsItemGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLayoutItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLineItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsLinearLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsObject' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsOpacityEffect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsPathItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsPixmapItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsPolygonItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsProxyWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsRectItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsRotation' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsScale' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsScene' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneContextMenuEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneDragDropEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneHelpEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneHoverEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneMouseEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneMoveEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneResizeEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSceneWheelEvent' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsSimpleTextItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsTextItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsTransform' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGraphicsWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGridLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QGroupBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QHBoxLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QHeaderView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QInputDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemDelegate' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemEditorCreator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemEditorCreatorBase' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QItemEditorFactory' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QKeyEventTransition' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QKeySequenceEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLCDNumber' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLabel' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLayoutItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QLineEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QListView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QListWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QListWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMacCocoaViewContainer' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMacNativeWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMainWindow' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMdiArea' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMdiSubWindow' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMenu' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMenuBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMessageBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QMouseEventTransition' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QOpenGLWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPanGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPinchGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPlainTextDocumentLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPlainTextEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QProgressBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QProgressDialog' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QProxyStyle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QPushButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QRadioButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QRubberBand' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScrollArea' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScrollBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScroller' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QScrollerProperties' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QShortcut' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSizeGrip' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSizePolicy' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSlider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSpacerItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSplashScreen' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSplitter' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSplitterHandle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStackedLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStackedWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStandardItemEditorCreator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStatusBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyle' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleFactory' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleHintReturn' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleHintReturnMask' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleHintReturnVariant' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOption' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionComboBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionComplex' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionDockWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionDockWidgetV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFocusRect' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFrameV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionFrameV3' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionGraphicsItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionGroupBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionHeader' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionMenuItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionProgressBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionProgressBarV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionRubberBand' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionSizeGrip' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionSlider' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionSpinBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTab' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabBarBase' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabBarBaseV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabV3' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabWidgetFrame' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTabWidgetFrameV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionTitleBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolBoxV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionToolButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItemV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItemV3' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyleOptionViewItemV4' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStylePainter' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStylePlugin' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QStyledItemDelegate' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSwipeGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QSystemTrayIcon' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTabBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTabWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTableWidgetSelectionRange' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTapAndHoldGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTapGesture' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTextBrowser' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTextEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTileRules' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTimeEdit' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolBar' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolBox' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolButton' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QToolTip' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QTreeWidgetItemIterator' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoCommand' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoGroup' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoStack' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QUndoView' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QVBoxLayout' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWhatsThis' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidget' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetAction' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetData' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetItem' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWidgetItemV2' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWizard' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QWizardPage' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QtWidgets' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QtWidgetsDepends' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/include/qt/QtWidgets/QtWidgetsVersion' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DAnimation/Qt53DAnimationConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickAnimation/Qt53DQuickAnimationConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickExtras/Qt53DQuickExtrasConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickInput/Qt53DQuickInputConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickRender/Qt53DQuickRenderConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt53DQuickScene2D/Qt53DQuickScene2DConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Core/Qt5CTestMacros.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Core/Qt5CoreMacros.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5DataVisualization/Qt5DataVisualizationConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Multimedia/Qt5MultimediaConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5NetworkAuth/Qt5NetworkAuthConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Positioning/Qt5PositioningConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5Purchasing/Qt5PurchasingConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5QuickControls2/Qt5QuickControls2Config.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5QuickTest/Qt5QuickTestConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5RemoteObjects/Qt5RemoteObjectsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5ScriptTools/Qt5ScriptToolsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5SerialPort/Qt5SerialPortConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5TextToSpeech/Qt5TextToSpeechConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebChannel/Qt5WebChannelConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebEngine/Qt5WebEngineConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebEngineCore/Qt5WebEngineCoreConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebEngineWidgets/Qt5WebEngineWidgetsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/lib/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfig.cmake' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/mkspecs/features/data/mac/objc_namespace.sh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/mkspecs/features/uikit/device_destinations.sh' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/Qt/labs/folderlistmodel/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/QtQuick/Controls/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/QtQuick/Dialogs/Private/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/qml/QtQuick/PrivateWidgets/qmldir' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_devtools_resources.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_resources.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_resources_100p.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/resources/qtwebengine_resources_200p.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/am.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ar.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/bg.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/bn.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ca.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/cs.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/da.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/de.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/el.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/en-GB.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/en-US.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/es-419.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/es.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/et.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fa.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fi.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fil.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/fr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/gu.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/he.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/hi.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/hr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/hu.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/id.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/it.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ja.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/kn.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ko.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/lt.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/lv.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ml.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/mr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ms.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/nb.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/nl.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/pl.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/pt-BR.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/pt-PT.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ro.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ru.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sk.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sl.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sv.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/sw.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/ta.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/te.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/th.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/tr.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/uk.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/vi.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/zh-CN.pak' specified in the package manifest cannot be found. CondaVerificationError: The package for qt located at C:\Users\dell\Miniconda3\pkgs\qt-5.9.7-vc14h73c81de_0 appears to be corrupted. The path 'Library/translations/qtwebengine_locales/zh-TW.pak' specified in the package manifest cannot be found. Cordially, -Shreeniket Joshi -------------- next part -------------- An HTML attachment was scrubbed... URL: