반응형
사용체제 Ubuntu 18.04. ver
ROS 사용 중 Python Jupyter notebook 을 사용하기 위해 설치 도중 다음과 같은 오류 발생
설치에 참고한 페이지 :
https://www.whatwant.com/entry/Ubuntu-Jupyter-Notebook
sudo pip3 install notebook
WARNING: The directory '/home/com/.cache/pip' or its parent directory is not owned or is not writable by the current user. The cache has been disabled. Check the permissions and owner of that directory. If executing pip with sudo, you should use sudo's -H flag.
이제는 안다... Warning message 가 뜨면 감사하다는 것을..
해당 디렉토리의 권한과 소유자를 확인하십시오. sudo로 pip를 실행하는 경우 sudo의 -H 플래그를 사용해야 합니다.
라는 의미인데 즉 sudo -H 를 해보라는 뜻...
에러 해결에 참고한 사이트 :
Home 디렉토리의 환경이 잡히지 않은 것이 문제라고 한다.
- H 커맨드를 넣어주면 특정 사용자의 home 디렉토리를 사용하게 된다.
다시 커맨드 입력
sudo -H pip3 install notebook
무탈하게 설치 되었는지 버전 확인
jupyter --version
짜란. 오류 해결... ^^.. 다음 오류를 기다리자....
반응형