Python graphlab create 安装

1.下载Anaconda 并安装

2. 创建conda环境

# Create a new conda environment with Python 2.7.x
conda create -n gl-env python=2.7 anaconda=4.0.0

# Activate the conda environment
activate gl-env

创建完成以后 在开始《Python graphlab create 安装》
看到gl-env的就属于创建的conda环境

3.更新pip版本 保证pip>7

# Ensure pip is updated to the latest version
# miniconda users may need to install pip first, using 'conda install pip'
conda update pip'

4.安装graphlab

# Install your licensed copy of GraphLab Create
pip install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/your registered email address here/your product key here/GraphLab-Create-License.tar.gz

这里的邮箱和key都是你在申请的时候出现的

5.安装ipython notebool

# Install or update IPython and IPython Notebook
conda install ipython-notebook

在virtualenv中安装

《Python graphlab create 安装》

修改notebook工作路径 最简单的方法

《Python graphlab create 安装》

    原文作者:点||点
    原文地址: https://www.cnblogs.com/diandian-d/p/7821181.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞