All checks were successful
continuous-integration/drone/push Build is passing
859 B
859 B
title | date | redirect_from |
---|---|---|
Install Python and Jupyter on macOS with Minimal Effort | 2017-02-28 11:14:00 +09:00 | /blog/2017/02/28/minimal-python-jupyter-macos |
Maybe you don't need pyenv
and/or virtualenv
in most cases.
Install Python
Don't have
brew
? Go to https://brew.sh.
brew install python
If you still need Python 2, run brew install python@2
.
Install Jupyter Notebook
pip install jupyter
python -m ipykernel install --user
That's all.
How about virtualenv
?
Since Python 3 got its own virtual environment tool called venv, You no longer need virtualenv
.
If you want a virtual envs on your project, run:
python -m venv venv
source ./venv/bin/activate
then venv
will creates virtual envs on ./venv folder on the root of your project.