Python: Jupyter

From delarco wiki
Revision as of 08:58, 3 January 2022 by 187.75.9.138 (talk) (Created page with "<h3>How to Install Jupyter Notebook Without Anaconda</h3> <pre> python -m pip install -upgrade pip python3 -m pip install -upgrade pip python -m pip install jupyter jupyter notebook </pre> <h3>How to Install Python Libraries in Jupyter Notebook</h3> <pre> import sys !{sys.executable} -m pip install pandas </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

How to Install Jupyter Notebook Without Anaconda

python -m pip install -upgrade pip
python3 -m pip install -upgrade pip

python -m pip install jupyter 

jupyter notebook


How to Install Python Libraries in Jupyter Notebook

import sys
!{sys.executable} -m pip install pandas