Python: Jupyter
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>")
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