• 安装graphlab 报错 No matching distribution found for graphlab-create>=2.1


    异常记录

    在安装graphlab 的过程中,发现如下错误

    Could not find a version that satisfies the requirement graphlab-create>=2.1 (from GraphLab-Create-License==2.1) (from versions: )
    No matching distribution found for graphlab-create>=2.1 (from GraphLab-Create-License==2.1)
    

    异常原因

    翻阅官方文档找到这么一句话

    Option 2: Install in Python environment using virtualenv

    The below instructions assume an existing Python 2.7.x (64-bit) environment and virtualenv is already installed on your machine. GraphLab Create installation requires pip version >= 7. IPython Notebook is recommended for getting the most out our code samples.

    好了,知道问题所在了

    graphlab要求python 2.7的环境。

    解决办法,如果你安装的是 anaconda

    重新设置一下python2.7

    在这里插入图片描述

    打开你邮箱中的那封安装邮件,然后按照流程安装即可

    在这里插入图片描述

    Step 1: Download Anaconda2 v4.0.0
    
    Step 2: Install Anaconda
    
    # Run Anaconda2 v4.0.0 installer.
    # Double-click the .exe file to install Anaconda and follow the instructions on the screen.
    Step 3: Create conda environment
    
    # 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
    Step 4: Ensure pip version >= 7
    
    # Ensure pip is updated to the latest version
    # miniconda users may need to install pip first, using 'conda install pip'
    conda update pip
    Step 5: Install GraphLab Create
    
    # Install your licensed copy of GraphLab Create
    pip install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/你的邮箱/邮箱收到的安装码/GraphLab-Create-License.tar.gz
    Step 4: Ensure installation of IPython and IPython Notebook
    
    # Install or update IPython and IPython Notebook
    conda install ipython-notebook
    
    

    上述命令中,也可以在软件直接操作,记得切换一下python环境 activate gl-env

    然后使用pip进行安装
    在这里插入图片描述

    安装完毕,运行jupyter之后,如果导入报错

    ACTION REQUIRED: Dependencies libstdc+±6.dll and libgcc_s_seh-1.dll not found.

    使用这个命令

    graphlab.get_dependencies()
    

    在这里插入图片描述

  • 相关阅读:
    windows 7 系统下,用户每次登录都是以临时配置文件的形式存在于users文件夹下
    string按行读取以及按空格分隔
    socket.io技术学习记录
    node.js实现js连接mysql数据库
    ajax在j2ee和js服务器上数据基本交换
    layui与jquery冲突导致下拉框无法显示的解决方法
    nativefier——将本地网页转化为桌面应用
    jquery——移动端touch事件
    Hibernate中使用HQL语句进行增,删,改,查
    一言不合敲代码(2)——八数码问题游戏
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13311561.html
Copyright © 2020-2023  润新知