`
朱辉辉33
  • 浏览: 27985 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

Python中的Numpy、SciPy、MatPlotLib安装与配置

阅读更多

Python安装完Numpy,SciPy和MatplotLib后,可以成为非常犀利的科研利器。本人搜索诸多安装教程后才找到正确的资源来配置,共享下。

    安装环境:64位python2.7

    下载http://pan.baidu.com/s/1c1Phqko中三个库的exe,因为MatplotLib的使用需要以Numpy的支持,所以先点击安装Numpy,其次是Scipy,最后是MatplotLib,一路点击next即可。

     安装时如果出现了Python 2.7 was not found in the registry的错误信息,则新建一个register.py,复制下面代码运行,输出:Python 2.7 is already registered就代表问题已解决。

# script to register Python 2.0 or later for use with win32all  
# and other extensions that require Python registry settings  
#  
# written by Joakim Loew for Secret Labs AB / PythonWare  
#  
# source:  
# http://www.pythonware.com/products/works/articles/regpy20.htm  
#  
# modified by Valentine Gogichashvili as described in http://www.mail-archive.com/distutils-sig@python.org/msg10512.html  
   
import sys  
   
from _winreg import *  
   
# tweak as necessary  
version = sys.version[:3]  
installpath = sys.prefix  
   
regpath = "SOFTWARE\\Python\\Pythoncore\\%s\\" % (version)  
installkey = "InstallPath"  
pythonkey = "PythonPath"  
pythonpath = "%s;%s\\Lib\\;%s\\DLLs\\" % (  
    installpath, installpath, installpath  
)  
   
def RegisterPy():  
    try:  
        reg = OpenKey(HKEY_CURRENT_USER, regpath)  
    except EnvironmentError as e:  
        try:  
            reg = CreateKey(HKEY_CURRENT_USER, regpath)  
            SetValue(reg, installkey, REG_SZ, installpath)  
            SetValue(reg, pythonkey, REG_SZ, pythonpath)  
            CloseKey(reg)  
        except:  
            print "*** Unable to register!"  
            return  
        print "--- Python", version, "is now registered!"  
        return  
    if (QueryValue(reg, installkey) == installpath and  
        QueryValue(reg, pythonkey) == pythonpath):  
        CloseKey(reg)  
        print "=== Python", version, "is already registered!"  
        return  
    CloseKey(reg)  
    print "*** Unable to register!"  
    print "*** You probably have another Python installation!"  
   
if __name__ == "__main__":  
    RegisterPy() 

 

 

0
0
分享到:
评论

相关推荐

    python(numpy scipy matplotlib sklearn)安装

    在Win7 x64环境下安装这些库,通常需要先安装Python解释器,然后通过pip(Python的包管理器)来安装numpy、scipy、matplotlib和sklearn。确保Python环境变量设置正确,可以在命令行输入`pip install numpy scipy ...

    windows下python 3.9 Numpy scipy和matlabplot的安装教程详解

    学习python过程中想使用python的matlabplot绘图功能,遇到了一大批问题,然后一路过关斩将,最终安装成功,实为不易,发帖留念。 1 首先打开cmd win+r 2 pip安装 pip3 install –user numpy scipy matplotlib –...

    win64 python2.7+numpy+scipy+matplotlib64-exe

    标题中的"win64 python2.7+numpy+scipy+matplotlib64-exe"指的是一个针对Windows 64位操作系统编译的Python环境,包含了Python 2.7版本,以及三个重要的科学计算和数据可视化库:NumPy、SciPy和Matplotlib。...

    numpy+scipy+matplotlib全套

    在Python的世界里,数据分析是一项重要的任务,而numpy、scipy和matplotlib这三款库则是进行高效数据处理和可视化不可或缺的工具。这篇详细讲解将带你深入理解这三个库的功能、用途以及如何协同工作。 首先,numpy...

    numpy scipy matplotlib 64位安装包

    在Python编程环境中,科学计算和数据可视化是两个非常重要的领域,而numpy、scipy和matplotlib则是这个领域中不可或缺的库。这些库对于数据分析、建模和可视化有着强大的支持。现在,我们将深入探讨这三个库以及它们...

    python 3.8 安装numpy和scipy

    1. 首先,确保Python 3.8已经正确安装并且环境变量配置完整,可以在命令行中输入`python --version`或`python3 --version`检查Python版本。 2. 将下载的.whl文件复制到与Python安装路径相同或者在环境变量PATH中的...

    ScipySuperpack, OSX的Numpy scipy Matplotlib iPython和PyMC的最近构建.zip

    ScipySuperpack, OSX的Numpy scipy Matplotlib iPython和PyMC的最近构建 用于 Homebrew的 scipy Superpack最新版本的基本 python 科学计算包这里 shell script 将构建并安装 python scientific,包括 Numpy,scipy ...

    python numpy,matplotlib,setuptools windows环境下的安装

    numpy、matplotlib和setuptools是Python生态系统中的关键库和工具,对于Windows用户来说,安装这些组件是进行高效开发的必要步骤。以下将详细介绍在Windows环境下如何安装这些库和工具。 首先,我们要了解这三个...

    python 中numpy和scipy

    除了上述功能,NumPy和SciPy还与其他Python库,如Pandas(数据处理)和Matplotlib(可视化)紧密集成,形成了一套完整的数据分析和科学计算生态系统。在实际应用中,开发者经常将这些库结合使用,以完成从数据导入、...

    配置Python+numpy+scipy+matplotlib环境.pdf

    在本节中,我们将详细探讨如何配置一个包含Python、Numpy、Scipy和Matplotlib的科学计算环境。这些工具广泛应用于数据分析、科学计算、机器学习等领域,是数据科学家和工程师们在解决实际问题时不可或缺的工具集。 ...

    安装numpy+scipy+matplotlib+scikit-learn文件

    Python安装Numpy、Scipy、Matlotlib、Scikit-learn等库的过程及遇到的问题解决方法,其中主要是版本问题。 安装过程参考教程:http://blog.csdn.net/eastmount/article/details/50347383 [python] 安装numpy+scipy+...

    python从numpy、matplotlib、pandas到sklearn总结教程文档

    在本教程文档中,我们将深入探讨Python编程语言及其在数据处理和分析中的核心库:NumPy、Pandas、Matplotlib以及机器学习库Scikit-learn(简称sklearn)。这些库是现代数据分析工作流程中的基石,对于任何希望在数据...

    python2.7+numpy+scipy+matplotlib EXE安装包

    这个"python2.7+numpy+scipy+matplotlib EXE安装包"显然是为了方便用户一次性安装这些库的Python 2.7版本。在某些情况下,直接安装这些库可能因为依赖问题而变得复杂,这个打包好的安装程序解决了这个问题,使得在不...

    windows64+Python3.4下Numpy+Scipy+Matplotlib安装文件

    在Windows 64位系统上使用...通过以上步骤,你将在Windows 64位系统上的Python 3.4环境中成功安装并准备好使用Numpy、Scipy和Matplotlib了。这三个库的结合将极大地提升你在数据科学、机器学习和工程计算领域的生产力。

    python+numpy+matplotlib+pandas的使用:.ipynb代码

    Python是一种广泛应用于数据分析、机器学习和科学计算的高级编程语言,而numpy、matplotlib和pandas是Python中的三个核心库,分别用于数值计算、数据可视化和数据处理。 **Numpy(Numerical Python)**: Numpy是...

    python2.7+numpy+scipy+matplotlib(机器学习工具win64)

    Python 2.7提供编程基础,Numpy处理数据,Scipy执行复杂计算,而Matplotlib用于结果可视化。这样的组合对于初学者来说,是一个很好的起点,因为它们都相对易学且功能强大。然而,值得注意的是,随着Python 3的广泛...

    Python3.4+scipy+matplotlib

    Python科学计算基本模块安装文件,包括Python3.4、scipy和matplotlib,均是whl文件,由于上传文件大小限制,numpy文件可在http://www.lfd.uci.edu/~gohlke/pythonlibs/中下载。whl文件可用pip安装。

    详解Python中的Numpy、SciPy、MatPlotLib安装与配置

    以上就是Python中Numpy、SciPy和Matplotlib的安装与配置过程。这三个库的正确配置对于进行高效的数据处理和可视化至关重要。通过掌握它们的使用,开发者可以轻松处理复杂的科学计算任务,并创建出专业级的数据可视化...

    python安装numpy&安装matplotlib& scipy的教程

    numpy安装 下载地址:https://pypi.python.org/pypi/numpy(各取所需) copy安装目录。eg:鄙人的D:\python3.6.1\...以上这篇python安装numpy&安装matplotlib& scipy的教程就是小编分享给大家的全部内容了,希望能给大

Global site tag (gtag.js) - Google Analytics