jupyter notebook
Arch Linux의 가상 환경에서 실행 하면 다음과 같은 오류가 발생했습니다.
Error executing Jupyter command 'notebook': [Errno 2] No such file or directory
내 Python 버전은 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 notebook
하고 열리면 닫은 다음
export PATH=$PATH:~/.local/bin/
새 터미널을 열어 경로를 새로 고친 다음 jupyter notebook
다시 시도 하십시오.
즉,하지 작업을 수행하는 경우 그리고 마지막으로, 살펴보고 vim /usr/local/bin/jupyter-notebook
, vim /usr/local/bin/jupyter
, vim /usr/local/bin/jupyter-lab
편집 사용하려는 파이썬의 버전과 일치하는 파일의 맨 위에있는 #! 파이썬 버전 (당신은 JupyterLab이있는 경우). 예를 들어, Mac에 Python 3.8.2를 설치했지만 해당 파일에는 여전히 3.6 버전의 경로가 있으므로 다음과 같이 편집했습니다.#!/Library/Frameworks/Python.framework/Versions/3.8/bin/python3
답변
답변
답변
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
이 설치 후 실행 도 작동했습니다.