notebook.community
Edit and run
这个问题多出现于mac用户,因为mac有一个系统自带的python,成功安装的第三方包都被安装到了系统自带的python里。因此需要确保我们使用的是conda自己的pip,即需要指定pip的路径名,比如我的pip路径名在:/Users/chengjun/anaconda/bin/pip,那么在terminal里输入: /Users/chengjun/anaconda/bin/pip install package_name
这个问题多出现于mac用户,因为mac有一个系统自带的python,成功安装的第三方包都被安装到了系统自带的python里。因此需要确保我们使用的是conda自己的pip,即需要指定pip的路径名,比如我的pip路径名在:/Users/chengjun/anaconda/bin/pip,那么在terminal里输入:
打开terminal,输入: conda list
conda remove tornado
pip install -U graphlab-create
运行以下代码
In [1]: import graphlab as gl from IPython.display import display from IPython.display import Image gl.canvas.set_target('ipynb')
import graphlab as gl from IPython.display import display from IPython.display import Image gl.canvas.set_target('ipynb')
A newer version of GraphLab Create (v1.9) is available! Your current version is v1.8.5. You can use pip to upgrade the graphlab-create package. For more information see https://dato.com/products/create/upgrade.
conda remove package_name
In [ ]: