Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 793 Bytes

conda_jupyter.md

File metadata and controls

27 lines (21 loc) · 793 Bytes

Anaconda and Jupyter notebook 6

Follow the instruction of this document to setup conda and Jupyter notebook on your machine.

Anaconda setup

Installation

  1. Download Miniconda from official website
  2. Install Miniconda following official instructions

Make sure adding conda python to your PATH!

Setup environment

Run the following command to set up a conda environment with python and Jupyter 6.

conda create -n myenv python=3.9 notebook=6.4.8

Activate the environment:

conda activate myenv

Run Jupyter notebook:

jupyter notebook                # For localhost
jupyter notebook --ip 0.0.0.0   # For public access