- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
Jupyter notebook에서 Root 디렉터리 들어가기 본문
jupyter notebook 에서 Root Directory 는 들어갈 수 없군요.
[해결방법]
Jupyter refuses to serve hidden directory (D:\) on windows
http://stackoverflow.com/questions/33366624/jupyter-refuses-to-serve-hidden-directory-d-on-windows
As kinverarity advised, any attempt to use the root folder directly will say that it's refusing to serve a hidden directory. If you absolutely must serve from the root folder (but can change how you try to run it), then what you will need to do is to create a symlink folder pointing to the root, so you run it from what it thinks is a folder but it serves files from the root. The following command creates a notebooks symlink:
mklink /D notebooks \
cd into the symlink folder and run jupyter and the error goes away but it's still serving the files from root.
I should point out that you want to make sure you don't have any processes that iterate recursively over all folders on the drive (unless they skip symlinks), otherwise they'll iterate into the notebooks folder, its notebooks folder, etc, and will never complete because it'll get stuck in a loop.
위 웹페이지에서 알려준대로 명령 프롬프트를 관리자 권한으로 실행해서 D:\python 디렉터리 들어가서
mklink /D notebooks \
해주고, 쥬피터 띄워서 notebooks 폴더 안으로 들어가면 root 폴더로 들어갈 수 있습니다.
'Python' 카테고리의 다른 글
PyCharm 원격 빌드 설정 (0) | 2016.08.15 |
---|---|
Windows 10 Ubuntu Bash Shell 에서 TensorFlow 설치하기 (2) | 2016.08.15 |
[Python][PyCon 2016] 가위바위보 소스 (0) | 2016.08.14 |
Jupyter 에러 (Notebook does not appear to be JSON) (1) | 2016.08.07 |
PyCharm 단축키 (0) | 2016.08.07 |