You can enter with pip. But no. There is no meaning in the virtual environment.
conda install tensorflow
The cause is this https://github.com/conda/conda/issues/7203 The required file path becomes too long and gets stuck in the windows path length limit.
Two solutions are presented,
The latter is recommended no matter what
Touch the anaconda configuration file. If not, C: \ Users \ username \ .condarc
will be created below.
conda config
Describe the following here
pkgs_dirs:
- c:\conda-pkgs
It seems to be almost a required setting for windows + anaconda.
Recommended Posts