Skip to content

Commit

Permalink
added cleaner markdown install commands and turn down debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjr committed Jun 17, 2013
1 parent 01a6de5 commit d000105
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ structured requires:
For installing on Ubuntu the following apt-get install lines should pull in the requirements:

### 12.04
```sudo apt-get install cmake libcv-dev libopenscenegraph-dev gdal-bin
libgdal1-dev python-gdal libvips-dev libopencv-dev libhighgui-dev
libcvaux-dev libopencv-gpu-dev libopencv-gpu2.3 tcl8.4-dev
tk8.4-dev csh imagemagick```
```sudo apt-get install cmake libcv-dev libopenscenegraph-dev gdal-bin```
```sudo apt-get install libgdal1-dev python-gdal libvips-dev libopencv-dev```
```sudo apt-get install libhighgui-dev libcvaux-dev libopencv-gpu-dev```
```sudo apt-get installlibopencv-gpu2.3 tcl8.4-dev tk8.4-dev csh imagemagick```

### 13.04
```sudo apt-get install cmake libcv-dev libopencv-dev libopenscenegraph-dev
gdal-bin libgdal1-dev python-gdal libvips-dev libhighgui-dev libcvaux-dev
tcl8.4-dev tk8.4-dev csh imagemagick```
```sudo apt-get install cmake libcv-dev libopencv-dev libopenscenegraph-dev```
```sudo apt-get install gdal-bin libgdal1-dev python-gdal libvips-dev ```
```sudo apt-get install libhighgui-dev libcvaux-dev tcl8.4-dev tk8.4-dev```
```sudo apt-get install csh imagemagick```

## Running

Expand Down
4 changes: 2 additions & 2 deletions runtasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def key_generator(size=12, chars=string.letters + string.digits):

# parse the arguments first
#logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(filename)s - %(funcName)s - %(message)s')
logging.basicConfig(level=logging.WARNING, format='%(asctime)s - %(filename)s - %(funcName)s - %(message)s')
logging.basicConfig(level=logging.ERROR, format='%(asctime)s - %(filename)s - %(funcName)s - %(message)s')

# check we have sufficient arguments
if len(sys.argv) < 3:
Expand Down Expand Up @@ -236,4 +236,4 @@ def key_generator(size=12, chars=string.letters + string.digits):
timing = open('timing.txt', 'a')
timing.write("{0} {1}\n".format(title, progress_bar.seconds_elapsed))
timing.close()
logging.warning("Exiting Parallel Code")
logging.warning("Exiting Parallel Code")

0 comments on commit d000105

Please sign in to comment.