pip, venv, jupyter 설치
$ sudo apt install python3-pip
$ sudo apt install python3.12-venv
SSD 에 venv 생성
$ cd /mnt/evo860
$ mkdir /mnt/evo860/python_venv
$ python3 -m venv ./python_venv
venv 에서의 설치로, "./pip"
$ cd ./python_venv/bin
$ ./pip install jupyter
$ ./jupyter-notebook --generate-config
$ vi ~/.jupyter/jupyter_notebook_config.py
c.ServerApp.ip = '0.0.0.0'
c.ServerApp.port = 8889
c.ExtensionApp.open_browser = False
'Tools' 카테고리의 다른 글
Minecraft + Python (0) | 2024.09.29 |
---|---|
VS Code (0) | 2021.09.30 |
Jupyter Notebook: Web Browser (Microsoft Edge), Start-up foler, 'Bad File Descriptor' error (0) | 2021.07.05 |