Changes between Version 2 and Version 3 of WARPnet1/Installation


Ignore:
Timestamp:
Jun 17, 2010, 1:04:01 PM (14 years ago)
Author:
sgupta
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WARPnet1/Installation

    v2 v3  
    11= Installing the WARPnet Framework =
    22
    3 === Installing the software ===
     3== Installing the software ==
    44
    55 1. First ensure that you are running [http://www.python.org/ Python 2.6] or higher. If not, install the latest 2.6 version of Python. We have not tested the server with Python 3+ and since the syntax has changed for several important commands it will probably not work yet.
     
    1717}}}
    1818
    19 === Installing the Framework ===
     19== Installing the Framework ==
    2020
    2121The WARPnet Framework is a standalone module that works just like any Python module. However, for now it is not installed into `site-packages` but added to the Python path on a per shell basis.
     
    2323 1. Download the WARPnet Framework folder and store it anywhere on your computer. Note the absolute path to it as it will be important later.
    2424 1. Download `warpnet_client_experiment_structs.py` and `experiment.py`. These are an example definitions file and example script that work with OFDM Reference Design v15.
     25
     26=== Running the server ===
     27
     28Running the server is explained in more detail [wiki:WARPnet/RunningServer here].
     29
     30=== Setting up a shell for the Client ===
     31
     32 1. Navigate to the `warpnet_framework` folder.
     33 1. Run the following. This will add the Framework to the Python path.
     34{{{
     35 source path_setup.sh absolutePathToFramework
     36}}}
     37 1. Now, browse to your experiment.py. To run your experiment type:
     38{{{
     39 python experiment.py
     40}}}