I using Miniconda since Anaconda is blocked in my actual company, but both have basically the same commands. I tried to create an environment by typing:
conda create --name tf_gpu tensorflow-gpu
After download 1.42GB of package, it appears the error message:
InvalidArchiveError("Error with archive C:\Users\MyName\AppData\Local\miniforge3\pkgs\tensorflow-base-2.6.0-gpu_py39)
It does not finish successfully, so that is not possible to activate that environment to install the problematic package with pip because the env does not exist yet. When trying to create the env again, only the package “tensorflow-base-2.6.0” (gpu_py39hb3da07e_0) is downloaded, but soon after the same error appears again.
I downloaded the file “tensorflow-base-2.6.0” directly from Anaconda files. My question is: how to retry the command “conda create env” but to use the local downloaded file “tensorflow-base-2.6.0” instead of download in terminal again resulting in the same error?
I’ve already tried also conda clean -a
without success. It deleted all my cache, setting and previous environments, but the same error appears. I also tried with using tensorflow version without gpu in the command:
conda create --name tf_env tensorflow
but the same error appears.
Tkx,