p**z 发帖数: 65 | 1 要查看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 周六的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 刚开始学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 我的优化后是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 我的优化后是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 有一个在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 我纯菜鸟 但有没有可能是之前电脑装过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 装两个版本是容易出混搭的错。好像有个virtualenv的东西。
你的numpy是装在python哪个版本下的? 可以试试python26或python27。 |
|
n********7 发帖数: 41 | 10 在 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
我查看页面源代码,是这种东西
|
|
d*g 发帖数: 62 | 12 谢谢,我在submit按纽傍边右点,查看source,果然看到form
不过我在browser里填上form的名字后,也没有成功
br.select_form(name="IDPLogin")
# User credentials
br.form['Ecom_User_ID'] = 'ttt'
br.form['Ecom_Password'] = 'test'
# Login
br.submit()
出错的信息还是没有找到form
Traceback (most recent call last):
File "C:/Python27/work001.py", line 36, in
br.select_form(name="IDPLogin")
File "build\bdist.win-amd64\egg\mechanize\_mechanize.py", line 524, in
select_form
raise FormNotFoundError("no form matching "+description)
FormNotFoun... 阅读全帖 |
|
c********1 发帖数: 5269 | 13 You can create a batch file to specify which python you want to use.e.g
put following line in a .cmd file to use Python 2.7.
"C:\Python27\pythonw.exe" "C:\your python file directory\test.py"
7,
Py
PA |
|
t***q 发帖数: 418 | 14 import os
import os.path
import StringIO
import csv
import datetime
dir = r"C:Python27"
if not os.path.exists(dir):
os.mkdir(dir)
my_list=[[1,2,3],[4,5,6]]
datestr=datetime.date.today().strftime("%y%m%d")
filename="good1_codes_{}".format(datestr)
with open(os.path.join(dir, filename+'.csv'), "w") as f:
csvfile=StringIO.StringIO()
csvwriter=csv.writer(csvfile)
for l in my_list:
csvwriter.writerow(l)
for a in csvfile.getvalue():
f.writelines(a)
以上程序,可以做这件事。试过了。 |
|
h****e 发帖数: 216 | 15 做uploader的时候,
出traceback(most recent call last)
file "python27,py", line 82, in
等信息,部署失败。 |
|
h*********n 发帖数: 278 | 16 非常感谢!我用的确实是windows下的gui,也有个command line,但是跟gui差不多。
按照你说的方法可以run,现在的问题是,如果我要用不同的argument怎么办呢?比如
hello Alice,按这个方法,不可能每次去改程序本身啊,这怎么办啊?
另外我那个directory用os.getcwd显示出来是
'C:\Python27\google-python-exercises'
我觉得因为python本身就安装在C:下面,所以不需要再指定C:吧。
Python
run |
|
J**********r 发帖数: 508 | 17 我是自己装的python27,所以得自己就一个个装库。目前装scipy时遇到困难,好像要
先装MKL, 一个C和Fortran的库,不知怎么搞。
不太想装这种free distribution什么都有的python。
by |
|