Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- C
- C++
- dkms
- deepstream
- 딥스트림
- 주피터 노트북
- tao_toolkit
- Spring
- nouveau
- 알고리즘
- 스프링
- docker
- mAP@.5
- 정처기
- 도커 컨테이너
- 비디오미리보기
- Python
- 백준
- 네트워크
- yolov7
- Linux
- IOU
- 파이썬
- 리눅스
- SQLD
- pyMySQL
- nfs mount
- 도커
- 딥러닝
- 타오툴킷
Archives
- Today
- Total
한 번만 더 해보자
[Linux] Error executing Jupyter command 'notebook': [Errno 20] Not a directory 본문
Linux
[Linux] Error executing Jupyter command 'notebook': [Errno 20] Not a directory
정 하임 2024. 6. 27. 22:25상황
jupyter notebook을 실행하려고 하는데 아래와 같은 에러 발생
에러코드
ubuntu@ip-172-31-25-159:~/jupyter $ jupyter notebook --ip 0.0.0.0 --allow-root --port 8888
/home/ubuntu/.local/lib/python3.6/site-packages/pkg_resources/__init__.py:119: PkgResourcesDeprecationWarning: 0.18ubuntu0.18.04.1 is an invalid version and will not be supported in a future release
PkgResourcesDeprecationWarning,
Error executing Jupyter command 'notebook': [Errno 20] Not a directory
해결방법
ubuntu 18.01
sudo apt-get install jupyter-notebook
jupyter-notebook --ip 0.0.0.0 --allow-root --port 8888
ubuntu 20.04~
pip3 install jupyter
jupyter notebook --ip 0.0.0.0 --allow-root --port 8888
우분투 버전에 따라서 설치해야하는 라이브러리가 다르니 버전에 맞게 설치해야한다
반응형