!pip install numpy
- https://www.latex-project.org/help/documentation/amsldoc.pdf When you write LaTeX in a Markdown cell, it will be rendered as a formula using MathJax.
- https://www.mathjax.org/
Ref: [https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/](Ref: https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/)
import sys !{sys.executable} -m pip install numpy
python -m pip install <package>
because is more explicit about where the package will be installed
By default, the first place Python looks for a module is an empty path, meaning the current working directory. If the module is not found there, it goes down the list of locations until the module is found. You can find out which location has been used using the path attribute of an imported module:
import numpy as np np.__path__
?str.replace()
%lsmagic
List of all Magic commands for Jupyrer
Jupyter Shortcuts and Tips