English 中文(简体)
涉及Scitools、NumPy和SciPy的建议设置
原标题:Recommended setup involving Scitools, NumPy, and SciPy

我有一本名为《与皮顿的科学编程(2009年)》的书,其中示例代码大量使用SciTools。我使用Python 3.2 64(考虑同时安装2.7个/开发环境;以后更多),SciTools尚未投入使用。

Scitops 是否被NumPy/SciPy 取代了多种目的? 还是什么? EazyViz? 我完全可以读读这本书,并将代码转换成 API / 模块中的3.2 。 我宁愿这样做,而不是建立 Python 2. 7 系统。

你建议设置什么?

最佳回答

Scipy/Numpy是使用 Python 进行科学/数字计算的实际标准。 绝大多数的包件( 包括Scitools) 都建在上面 。 在许多方面, 它看起来像 Scitools, 只是 Numpy/ Scipy/ Matplotlib 周围的默认包装 。

就Python 3支持、Numpy和Scipy的支持而言,

< a href=" "http://onpython3yet.com/packages/ requirements?r=numpy%0D%00Amatplotlib%0D0Ascipy%0D0Ascipy.com/packages/requirements?r=numpy%0D%0Amatplotlib%0D0Ascipy

我个人从未使用过Scitools, 因为我更喜欢直接使用其他图书馆的低层控制。 我也坚持 Python 2. 7, 因为完整的科学编程库还没有完成迁移到 Python 3 。

问题回答

也可以查看 < a href=> "http://pandas.pydata.org" rel="no follow" >Pandas 的数值工作。 它建在 NumPy 上方。





相关问题
Get webpage contents with Python?

I m using Python 3.1, if that helps. Anyways, I m trying to get the contents of this webpage. I Googled for a little bit and tried different things, but they didn t work. I m guessing that this ...

What is internal representation of string in Python 3.x

In Python 3.x, a string consists of items of Unicode ordinal. (See the quotation from the language reference below.) What is the internal representation of Unicode string? Is it UTF-16? The items ...

What does Python s builtin __build_class__ do?

In Python 3.1, there is a new builtin function I don t know in the builtins module: __build_class__(...) __build_class__(func, name, *bases, metaclass=None, **kwds) -> class Internal ...

what functional tools remain in Python 3k?

I have have read several entries regarding dropping several functional functions from future python, including map and reduce. What is the official policy regarding functional extensions? is lambda ...

Building executables for Python 3 and PyQt

I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed. I almost exclusively care about ...

热门标签