在jupyter notebook中安装第三方包(卸载、查看)

在jupyter中安装卸载查看第三方包 import pip def pip_install(package): pip.main(['install', package]) def pip_list(): pip.main(['list']) def pip_uninstall(package): pip.main(['uninstall', package])
相关文章
相关标签/搜索