Access is denied when trying to pip install a package on Windows

前端 未结 8 1302
一生所求
一生所求 2020-12-03 13:41

How to set path for python 3.7.0 ? i tried the every possible way but it still shows the error!!!

Could not install packages due to an EnvironmentError:

8条回答
  •  萌比男神i
    2020-12-03 14:26

    Append the --user modifier to your command as suggested in the error.

    --user makes pip install packages in your home directory instead, which doesn't require any special privileges.

    More: What is the purpose "pip install --user ..."?

提交回复
热议问题