Jupyter notebook installation
in blog on Jupyter
Jupyter notebook installation
- Prerequisite: Python
- Installation
- using anaconda
- using pip
> pip install -U pip virtualenv > virtualenv --system-site-packages -p python ./venv (venv) > .\venv\Scripts\activate (venv) > pip -m pip install --upgrade pip (venv) > pip list (venv) > pip install jupyter (venv) > jupyter notebook ... (venv) > deactivate
- Running the notebook