I just installed Anaconda (that installs Python 3.6) within Windows 10...and it worked fine. I then tried to create a Python 3.5 environment:
% conda create -n py35 python=3.5 anaconda
But the process fails on verification. I've tried twice...and the verification lists 702 errors as below... Here are the top three (I've substituted 'UserName' for my user name):
CondaVerificationError: The package for pyqt located at C:\Users\
<UserName>\AppData\Local\Continuum\anaconda3\pkgs\pyqt-5.6.0-py35hd46907b_5
appears to be corrupted. The path 'Lib/site-packages/PyQt5/Enginio.pyd'
specified in the package manifest cannot be found.
CondaVerificationError: The package for pyqt located at C:\Users\<UserName>\AppData\Local\Continuum\anaconda3\pkgs\pyqt-5.6.0-py35hd46907b_5
appears to be corrupted. The path 'Lib/site-packages/PyQt5/Enginio.pyi'
specified in the package manifest cannot be found.
CondaVerificationError: The package for pyqt located at C:\Users\<UserName>\AppData\Local\Continuum\anaconda3\pkgs\pyqt-5.6.0-py35hd46907b_5
appears to be corrupted. The path 'Lib/site-packages/PyQt5/QAxContainer.pyd'
specified in the package manifest cannot be found.
This should be straightforward: install an environment, within Windows 10... Yet it fails... is there a step I've missed? path variable unset?
Show activity on this post. You will see something like this: Running virtualenv with interpreter C:\Python37\python.exe Using base prefix 'C:\Python37' New python executable in C:\Users\XXXX\Documents\GitHub\MyProject\venv\Scripts\python.exe Installing setuptools, pip, wheel... done.
Deprecated since version 3.6: pyvenv was the recommended tool for creating virtual environments for Python 3.3 and 3.4, and is deprecated in Python 3.6. Changed in version 3.5: The use of venv is now recommended for creating virtual environments.
Just another alternative to the previous answer:
conda clean --all
This removes index caches, lock files, unused cache packages, and tarballs.
have same issue. And helped with this link.
conda clean --packages --tarballs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With