Permission denied when installing Tensorflow

前端 未结 9 1405
长情又很酷
长情又很酷 2020-12-07 00:52

I am trying to install TensorFlow by Anaconda(My Python is 3.5.2 edition).

When I run:

(tensorflow)C:> pip install --ignore-installed --upgrade h         


        
9条回答
  •  有刺的猬
    2020-12-07 01:49

    I had the same error and fixed it by running conda update --all first.

    BUt be careful with conda update: (https://github.com/ContinuumIO/anaconda-issues/issues/830) Updating packages

    conda:        4.0.5-py35_0       --> 4.1.1-py35_0
    conda-env:    2.4.5-py35_0       --> 2.5.0-py35_0
    matplotlib:   1.5.1-np110py35_0  --> 1.5.1-np111py35_0
    mkl:          11.3.1-0           --> 11.3.3-1
    mkl-service:  1.1.2-py35_0       --> 1.1.2-py35_1
    numexpr:      2.5-np110py35_0    --> 2.5.2-np111py35_1
    numpy:        1.10.4-py35_0      --> 1.11.0-py35_1
    pandas:       0.18.0-np110py35_0 --> 0.18.1-np111py35_0
    scikit-learn: 0.17.1-np110py35_0 --> 0.17.1-np111py35_1
    scipy:        0.17.0-np110py35_0 --> 0.17.0-np111py35_4
    

    will break Scripts/activate.bat under Windows if the install path contains spaces. (Replacing activate.bat with the original one just works fine.)

提交回复
热议问题