Rearrange test case / file layout a bit.

This commit is contained in:
Stephen Diehl
2012-02-23 11:19:26 -05:00
parent 6e1cc72900
commit 6190da376a
6 changed files with 854 additions and 347 deletions
+7 -2
View File
@@ -1,6 +1,11 @@
Zipline
=======
Zipline is a distributed realtime stream processing system.
System Setup
==============
You need to have zeromq installed - http://www.zeromq.org/intro:get-the-software.
Running
@@ -55,7 +60,7 @@ QBT relies heavily on scientific python components (numpy, scikit, pandas, matpl
- mac: homebrew/macport/fink (I highly recommend homebrew: https://github.com/mxcl/homebrew)
- windows: probably best if you use a complete distribution, like: enthought, ActiveState, or Python(x,y)
- Python also provides good package management tools to help you manage the components you install for Python.
- pip
- pip
- easy_install/setuptools. I have always used setuptools, and I've been quite happy with it. Just remember that setuptools is coupled to your python version.
- virtualenv and virtualenvwrapper are your very best friends. They complement your python package manager by allowing you to create and quickly switch between named configurations.
- *Install all the versions of Python you like to use, but install setuptools, virtualenv, and virtualenvwrapper with the very latest python.* Use the latest python to install the latest setuptools, and the latest setuptools to install virtualenv and virtualenvwrapper. virtualenvwrapper allows you to specify the python version you wish to use (mkvirtualenv -p <python executable> <env name>), so you can create envs of any python denomination.