利用Python的pip命令安装nump

发布时间:2019-09-08 09:09:46编辑:auto阅读(1782)

    》将python安装目录中的script的目录导入到环境变量path中

    wKioL1gdbcuAxh7AAAP1IrItTQc796.png


    》在Windows的DOS窗口执行:pip

        》》将出现pip的相关信息

    wKiom1gdbk3hOq5uAAC6E0dPfeI717.png

    》在Windows中的DOS界面中执行:pip install nump

        》》系统会自动下载nump包,并且完成相应的安装

    wKioL1gdbsDhG-UkAACij34cmgE518.png

        》》因为,我已经安装过啦,所以不会出现下载的进度条(注:下载比较缓慢)

    》前提:你已经安装了python3.5.2

        》》python3.5.2下载链接:python官网

    》测试案例:

    # import the necessary packages
    import numpy as np
    
    def chi2_distance(histA, histB, eps = 1e-10):
            # compute the chi-squared distance
        d = 0.5 * np.sum([((a - b) ** 2) / (a + b + eps)
            for (a, b) in zip(histA, histB)])
        Sum = 0;
        for (a,b) in zip(histA, histB):
            E  = ((a - b) ** 2) / (a + b + eps)
            Sum += E
            print Sum/2
        # return the chi-squared distance
        return d
    d = chi2_distance([0,1,2,3,4],[4,3,2,1,0])
    # print d


关键字