programing

`jupyter notebook` 실행시 오류 (해당 파일 또는 디렉토리 없음)

nasanasas 2020. 10. 11. 10:43
반응형

`jupyter notebook` 실행시 오류 (해당 파일 또는 디렉토리 없음)


jupyter notebookArch Linux의 가상 환경에서 실행 하면 다음과 같은 오류가 발생했습니다.

Error executing Jupyter command 'notebook': [Errno 2] No such file or directory

내 파이썬 버전은 3.6이고 내 jupyter 버전은 4.3.0입니다.

많이 검색했지만이 문제와 관련된 것을 찾을 수 없었습니다.

미리 감사드립니다.


설치가 어떻게 든 엉망이 된 것 같습니다. 다음을 실행 해보십시오.

# For Python 2
pip install --upgrade --force-reinstall --no-cache-dir jupyter
# For Python 3
pip3 install --upgrade --force-reinstall --no-cache-dir jupyter

이것은 PyPi의 모든 것을 다시 설치해야합니다. 이렇게 해야 내가 실행 생각하는 문제를 해결 pip install "ipython[notebook]"엉망이 물건을.


나에게 문제는 설치 후 명령이 jupyter notebook변경 되었다는 것 jupyter-notebook입니다.


다음 명령을 시도하십시오. python -m IPython notebook

여기 에서 솔루션을 제공 한 GitHub 사용자 Milannju 에게 감사드립니다 .


이것은 나를 위해 일했습니다. (Ubuntu 18.04 LTS의 Python 3.6)

export PATH=$PATH:~/.local/bin/

Ubuntu 18.10에서는 다음 명령이 도움이되었습니다.

sudo apt-get install jupyter-notebook

Jupyter 설치가 Mac OS에서 작동하지 않습니다.

jupyter 노트북을 실행하려면 :-> python -m notebook


pip와 pip3.6이 모두 설치되어 pip install --upgrade --force-reinstall jupyter실패했기 때문에

pip3.6 install --upgrade --force-reinstall jupyter

그리고 그것은 나를 위해 일했습니다. jupyter notebook이 설치 후에도 실행 이 작동했습니다.


아래 명령을 사용하고 pip3을 사용하는 경우 pip를 pip3으로 바꿉니다.

pip install --upgrade --force-reinstall jupyter

이것은 나를 위해 일했습니다.


나를 위해 수정은 단순히 실행 중이었습니다. pip install notebook

어떻게 든 원래의 Jupiter 설치가 도중에 지루해졌습니다.


Ubuntu의 VirtualBox에서이 작업을 수행하려고합니다. 마지막으로 다른 게시물에서 jupyter-notebook을 사용해 보라고했습니다. 나는 이것을 시도했고 그것은 sudo apt-get jupyter-notebook을하라고 말했고 그것은 많은 것들을 설치했습니다. 이제 jupyter-notebook 명령을 입력하면 작동합니다.


Fedora를 설치하면 python3-notebook문제가 해결되었습니다.

# dnf install python3-notebook

현재있는 경우 가상 환경을 비활성화하십시오.

다음 명령을 실행하십시오.

python -m pip jupyter 설치

주피터 노트북

참고 URL : https://stackoverflow.com/questions/42648610/error-when-executing-jupyter-notebook-no-such-file-or-directory

반응형