install packages in jupyter notebook

发布时间 2023-04-12 14:33:34作者: xiaoxuxli
!conda install --yes numpy
!pip install numpy

!echo $PATH

# If you want to know what is actually executed 
# when you type python, you can use the type shell command:

!type python
!type ls


参考:
[1] https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/