add collision description

This commit is contained in:
Jaewook Lee
2024-07-02 12:30:59 +09:00
parent 555fcaa74e
commit 032b017276

View File

@@ -31,4 +31,16 @@ $ which python pip
# 앞으로 pip을 쓰면 모두 .venv에 깔리지만 내가 신경쓸 것은 없다
pip install streamlit
# 이미 씨스템 파이썬으로 jupyter, streamlit 설치한 경우에도
which jupyter
/home/w/.local/bin/jupyter # 씨스템 파이썬의 잔재
/home/w/.venv/bin/streamlit
# 그냥 새로 깔아서 덮어씌워주면 된다. (PATH 앞쪽에 있어서 우선순위가 우위)
pip install jupyterlab
which jupyter
/home/w/.venv/bin/jupyter
/home/w/.venv/bin/streamlit
```