나는 여러 다른 패키지로 여러 번 시도했고 pip 업그레이드를 시도했습니다. 그래요
C:\Users\Michael>pip install pillow
Collecting pillow
Downloading https://files.pythonhosted.org/packages/40/f2/a424d4d5dd6aa8c26636969decbb3da1c01286d344e71429b1d648bccb64/Pillow-6.0.0-cp37-cp37m-win_amd64.whl (2.0MB)
100% |████████████████████████████████| 2.0MB 1.8MB/s
Installing collected packages: pillow
Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: 'c:\\program files\\python37\\Lib\\site-packages\\PIL'
Consider using the `--user` option or check the permissions.
You are using pip version 10.0.1, however version 19.0.3 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
답변1
메시지 구분하기:
Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: 'c:\\program files\\python37\\Lib\\site-packages\\PIL'
Consider using the `--user` option or check the permissions.
이는 사용자가 위 디렉터리에 파일을 생성할 수 없음을 의미합니다. 관리자 권한으로 터미널을 실행하거나 명령만 실행해야 합니다. 또는 --user
명령에 플래그를 추가하여(예: pip install --user pillow
) 사용자가 소유한 디렉토리에 프로그램을 설치할 수 있습니다. 이렇게 하면 해당 사용자만 프로그램을 사용할 수 있게 됩니다.
You are using pip version 10.0.1, however version 19.0.3 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
이는 훨씬 더 새로운 버전의 Pip이 있음을 암시하고 업그레이드를 촉구하는 일반적인 메시지일 뿐입니다. 실행을 제안하는 명령에도 동일한 권한 문제가 적용됩니다.