由买买提看人间百态

topics

全部话题 - 话题: python27
(共0页)
p**z
发帖数: 65
1
来自主题: _Python版 - 查看numpy使用的数学库的信息
要查看numpy都用了哪些数学库,用下面的函数:
numpy.show_config()
结果在Windows机器上大概像这样:
lapack_opt_info:
libraries = ['mkl_lapack95_lp64', 'mkl_core_dll', 'mkl_intel_lp64_dll',
'mkl_intel_thread_dll']
library_dirs = ['C:\Python27\libs']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['C:\Python27\include']
blas_opt_info:
libraries = ['mkl_core_dll', 'mkl_intel_lp64_dll', 'mkl_intel_thread_dll
']
library_dirs = ['C:\Python27\libs']
define_macros = [('SCIPY_MKL_H', None)]
include_... 阅读全帖
S******y
发帖数: 1123
2
来自主题: Statistics版 - ~解答 Install matplotlib package in Python
周六的Python 课,我们其中有一个练习用numpy 来summarize a financial
underwriting data set 以及matplotlib 来画图。 有同学问怎样安装matplotlib
package.因为matploblib网页上documentation不完整, 我这里写了一个安装的步骤,
希望对大家有帮助 -
Instructions on how to install matplotlib package in Python:
1)Install Python and NumPy
2)Install Setuptools:
http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6
3)Windows Start>Run
c:\python27\scripts\pip install matplotlib
4)Test installation: Start>All Programs>Python27>IDLE, then type -
import matpl... 阅读全帖
h*********n
发帖数: 278
3
来自主题: Statistics版 - 弱问个python的问题
刚开始学google的python class,然后装了python,也可以用interpreter,比如输入a=
6之类的,但是就是运行不了那个hello.py,过程如下
>>> import os
>>> os.chdir("/Python27/google-python-exercises")
>>> python hello.py
SyntaxError: invalid syntax
那个hello.py明明就在C:/Python27/google-python-exercises/里,为啥就运行不了呢?
刚开始学就受打击啊,求牛人指点。
另外os.chdir是我自己google出来的,instruction只说要cd到exercises所在的目录,
可没说怎么去,不知道对不对。
h*****t
发帖数: 40
4
来自主题: JobHunting版 - 问道amazon的面试题
我的优化后是33秒,CPU是C2D T8100. 递归的次数是58539.
D:\download>d:\Python27\python.exe milestone_pos.py
[4, 13, 5, 4, 13, 6, 8, 12, 16, 9, 13, 13, 13, 16, 9, 2, 6, 5, 6]
cnt 58539
time 33.2269999981
Mod:
@@ -1,10 +1,15 @@
#! /usr/bin/env python
import sys
+import time
#DEBUG=1
DEBUG=0
+global cnt
+cnt = 0
def milestone(a, total, prev_pos):
+ global cnt
+ cnt += 1
if DEBUG: print "#", prev_pos, total, a
if len(a) <= 0:
@@ -16,17 +21,21 @@
#print a[0]
... 阅读全帖
h*****t
发帖数: 40
5
来自主题: JobHunting版 - 问道amazon的面试题
我的优化后是33秒,CPU是C2D T8100. 递归的次数是58539.
D:\download>d:\Python27\python.exe milestone_pos.py
[4, 13, 5, 4, 13, 6, 8, 12, 16, 9, 13, 13, 13, 16, 9, 2, 6, 5, 6]
cnt 58539
time 33.2269999981
Mod:
@@ -1,10 +1,15 @@
#! /usr/bin/env python
import sys
+import time
#DEBUG=1
DEBUG=0
+global cnt
+cnt = 0
def milestone(a, total, prev_pos):
+ global cnt
+ cnt += 1
if DEBUG: print "#", prev_pos, total, a
if len(a) <= 0:
@@ -16,17 +21,21 @@
#print a[0]
... 阅读全帖
t***q
发帖数: 418
6
来自主题: JobHunting版 - windows 上安装python package.
有一个在windows 下安装 python package 的问题。
我的工作电脑是一个pc, 有时候,我需要安装 python package, 而且,这些package
没有 exe, ims file 去安装,只有 zip file, 就需要用 cmd command line 去安装。
python setup.py install
一些package 如 bottlenose:
https://pypi.python.org/pypi/bottlenose/0.6.2
如果他只有一个 zip file. 我们需要用这句话在 cmd 上安装 "python setup.py
install".
但是在我的, pc 上, 我每次都得到这个 error:
"command class %s must subclass Command" % cmd_class distutils.errors.
DistutilsClassError: command class setuptools.command.install.install must
subclass Command.
... 阅读全帖
l*******h
发帖数: 151
7
来自主题: JobHunting版 - anaconda 装完了用不了是什么情况
我纯菜鸟 但有没有可能是之前电脑装过python27或者python35有冲突 python,
anaconda全部卸载后重新装一次看看
p**o
发帖数: 3409
8
不知道版上有没有用Python做科学计算的同好,
本人近日在带Lion的新MBA上安装Python科学计算包遇到了困难,
现把失败经历小结如下,希望后来人不要重走弯路,
如果能为本人指出一条“正路”就更感谢。
尝试1. MacPorts
macports是我第一个试的,下面这些包可以通过编译:gnuplot libsvm py27-numpy
py27-scipy py27-matplotlib python27-doc py27-sympy py27-ipython py27-
networkx py27-pymc py27-django py27-libdnet py27-lint py27-mysql py27-pip
py27-ply py27-pygraphviz py27-pyrex py27-rpy2 py27-scientific py27-sqlite
py27-svn py27-tables py27-tornado igraph py27-igraph py27-numexpr py27-pp
py27-cython py27-psyco py27-twisted... 阅读全帖
C**********r
发帖数: 8189
9
来自主题: Linux版 - 问个 python 问题
装两个版本是容易出混搭的错。好像有个virtualenv的东西。
你的numpy是装在python哪个版本下的? 可以试试python26或python27。
n********7
发帖数: 41
10
来自主题: Programming版 - 如何安装python for windows extensions
在 sourceforge.net 下载了 pywin32_214 文件夹,用下面语句.
execfile("c:/python27/pywin32-214/setup.py")
但是出现很多错误.
d*g
发帖数: 62
11
多谢!不过遇到问题。在网页上打开,能看见登录的用户名密码框,
但用browser就不知道应该怎么打开,因为
browser.select_form(nr=0) 出错如下:
Traceback (most recent call last):
File "C:/Python27/work001.py", line 36, in
br.select_form(nr=0)
File "build\bdist.win-amd64\egg\mechanize\_mechanize.py", line 524, in
select_form
raise FormNotFoundError("no form matching "+description)
FormNotFoundError: no form matching nr 0
我查看页面源代码,是这种东西