Jupyter Notebookで仮想環境venvを使う(2024/01/29)
mkdir test
cd test
python3 -m venv venv
. venv/bin/activate
pip install jupyter
pip install pandas
jupyter notebook
deactivate
mkdir test
cd test
python3 -m venv venv
. venv/bin/activate
pip install jupyter
pip install pandas
jupyter notebook
deactivate