完美者(wmzhe.com)网站以软件下载为基础,改版后的网站对功能性板块进行扩充,以期能够解决用户在软件使用过程中遇见的所有问题。网站新增了“软件百科”、“锦囊妙技”等频道,可以更好地对用户的软件使用全周期进行更加专业地服务。
TweakNow WinSecret是一个系统调整工具。调整包括了各种办法来限制访问的文件夹和控制面板功能,优化Windows系统和互联网设置,自定义桌面环境和其他许多东西。不用怕修改错了造成难以恢复的损害,该程序保存一个自动备份您的原始设定,使您可以撤消的任何变化。"锦囊妙技"栏目是聚合全网软件使用的技巧或者软件使用过程中各种问题的解答类文章,栏目设立伊始,小编欢迎各路软件大神朋友们踊跃投稿,在完美者平台分享大家的独门技巧。
本站文章素材来源于网络,大部分文章作者名称佚失,为了更利于用户阅读和使用,根据需要进行了重新排版和部分改编,本站收录文章只是以帮助用户解决实际问题为目的,如有版权问题请联系小编修改或删除,谢谢合作。
软件大小:6.91 MB
## script to register Python 2.0 or later for use with # Python extensions that require Python registry settings## written by Joakim Loew for Secret Labs AB / PythonWare## source:# http://www.pythonware.com/procts/works/articles/regpy20.htm## modified by Valentine Gogichashvili as described in http://www.mail-archive.com/distutils-sig@python.org/msg10512.htmlimport sysfrom _winreg import *# tweak as necessaryversion = sys.version[:3]installpath = sys.prefixregpath = "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()3. 安装 numpy-1.7.0-win32-superpack-python2.7.exe4. 下载numpy-1.9.2+mkl-cp27-none-win_amd64.whl文件,通过 pip install numpy-1.9.2+mkl-cp27-none-win_amd64.whl5. 安装python_dateutil-2.4.2-py2.py3-none-any.whl , 下载文件,然后到相应的目录pip install python_dateutil-2.4.2-py2.py3-none-any.whl6. 安装 pyparsing-2.0.3-py2-none-any.whl 下载文件,然后到相应的目录pip install pyparsing-2.0.3-py2-none-any.whl 7. 安装scipy ,直接通过安装文件安装。 scipy_0.14.0.win_amd64_py2.7.exe8、输入以下代码不报错:import matplotlibimport numpyimport scipyimport pyparsingimport matplotlib.pyplot as plt9、验证一个简单的例子import matplotlib.pyplot as pltplt.plot([1,2,3])plt.ylabel('some numbers')plt.show()======================================直接安装Anaconda,所有的都包含了。