PyPy与VirtualEnv的安装问题说明:本博客由bitpeach原创撰写,请勿商用。转载免费,请注明出处,谢谢。(零)背景 VirtualEnv工具的详细内容是什么,请自行百度。这里大概简介,主要是实现不同版本或不同环境的Python执行相互不产生干扰。有点像python界的虚拟机,可以这么....
分类:
其他好文 时间:
2015-01-07 23:25:59
阅读次数:
743
练习:编写一个search(s)的函数,能在当前目录以及当前目录的所有子目录下查找文件名包含指定字符串的文件,并打印出完整路径:$ python search.py testunit_test.logpy/test.pypy/test_os.pymy/logs/unit-test-result.tx...
分类:
编程语言 时间:
2014-12-03 14:09:07
阅读次数:
269
Python 现在已经不仅仅是胶水脚本语言了. 不信?看看下面使用Python的成功案例:YouTube - 主要由 Python编写NASAIndustrial Light & Magic Runs- 电影公司OpenStackSage- 科学软件及其他 (SciPy, PythonXY)WEB....
分类:
编程语言 时间:
2014-11-20 09:03:20
阅读次数:
328
This page documents the few differences and incompatibilities between the PyPy Python interpreter and CPython. Some of these differences are “by desig...
分类:
编程语言 时间:
2014-11-10 09:52:58
阅读次数:
295
看到网上都说nodejs处理并发请求速度很快.对比了一下pypy + twisted 单线程模型下pypy+twisted完胜 nodejs 最少比nodejs快2倍以上nodejs 结果:Benchmarking 127.0.0.1 (be patient)Completed 4000 reque...
分类:
Web程序 时间:
2014-11-04 01:33:05
阅读次数:
236
High Performance Python
目录
1
Understanding Performant Python2
Profiling3
Lists and Tuples4
Dictionaries and Sets5
Iterators and Generators6
Matrix and Vector Computation7
Compil...
分类:
编程语言 时间:
2014-10-08 11:03:25
阅读次数:
448
让进程在后台运行,执行命令后立即返回,可以继续执行其它命令,在命令行最后加上“&”bash-4.2$ find ~ -name doc &[1] 5453bash-4.2$ /home/myhaspl/hadoop-2.4.1/share/doc/home/myhaspl/pypy-2.3.1-src/site-packages/numpy/doc/home/myhaspl/pypy-2.3.1-...
分类:
系统相关 时间:
2014-09-16 12:46:30
阅读次数:
344
以centos为例1、当前用户$表示普通用户状态,#表示超级用户状态-bash-4.2$ -bash-4.2$ su密码:[root@localhost myhaspl]# 2、命令基础命令名 [命令选项] [命令参数]比如:bash-4.2$ lshadoop-2.4.1 hadoop-2.4.1-src.tar.gz hadoop-2.4.1.tar.gz numpy pypy-2.3...
分类:
系统相关 时间:
2014-09-16 09:18:20
阅读次数:
322
Python解释器的几种实现版本
我们都知道python的解释器有很多种实现方式,有C的,java的,还有python的等等,对应的也就是Cpython,Jython,一直比较火的PyPy ,今天就来盘点下这些版本(不一定非常全)
CPython
CPython 是默认的python实现,环境或者是解释器(你喜欢哪个就那么叫)。脚本大多数情况下都运行在这个解释器中。...
分类:
编程语言 时间:
2014-09-11 13:57:52
阅读次数:
290
git clone https://bitbucket.org/pypy/numpy.gitcd numpypypy setup.py install...
分类:
编程语言 时间:
2014-07-02 10:43:25
阅读次数:
222