1 |
ERROR: Could not install packages due to an EnvironmentError: [Errno 28] 장치에 남은 공간이 없음 |
pip install 진행 중 위와 같이 문제가 발생되는 경우 캐싱 디렉토리에 저장 공간이 없어서 발생하는 부분이다
이때는 캐싱 디렉토리를 exprt 해줘서 해결하면 가능하다
1 |
[root@xinet ~]# export TMPDIR=/home/tmp |
이제 pip 설치를 하면 해당 디렉토리에 자료가 있는것을 확인 할 수 있다
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
[root@xinet ~]# cd /home [root@xinet free1]# ll drwxr-xr-x 5 root root 104 12월 14 17:00 tmp [root@xinet free1]# cd tmp [root@xinet tmp]# ls -l 합계 4 drwx------ 2 root root 6 12월 14 16:59 pip-ephem-wheel-cache-ti43j9xs drwx------ 29 root root 4096 12월 14 17:00 pip-install-u4v8idhi drwx------ 2 root root 6 12월 14 17:00 pip-req-tracker-0kjdku7g [root@xinet tmp]# du -sh * 0 pip-ephem-wheel-cache-ti43j9xs 935M pip-install-u4v8idhi 0 pip-record-ob5l656q 0 pip-req-tracker-0kjdku7g [root@xinet tmp]# du -sh * 0 pip-ephem-wheel-cache-ti43j9xs 943M pip-install-u4v8idhi 0 pip-req-tracker-0kjdku7g |
pip로 패키지 설치 시 자료가 있는 것을 확인 할 수 있다
설치가 다 완료되면 해당 폴더에는 더 이상 자료가 존재하지 않는다