在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])

猜你喜欢

转载自blog.csdn.net/qq_29719097/article/details/79948005
今日推荐