Skip to content

Commit 8e45550

Browse files
committed
install the uncompresser for PIL.
1 parent 1e4fb47 commit 8e45550

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,22 @@ python:
88
# - "3.2"
99
# command to install dependencies
1010
before_install:
11-
- sudo apt-get install -qq libatlas3gf-base libatlas-dev
11+
#zlib1g-dev is needed to allow PIL to uncompress the dataset.
12+
- sudo apt-get install -qq libatlas3gf-base libatlas-dev zlib1g-dev
1213
install:
1314
#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.
1415
- "pip install -q numpy --use-mirrors"
15-
- "pip install PIL --use-mirrors"
16+
- "pip install -q PIL --use-mirrors"
1617
# - "pip install --no-deps Theano --use-mirrors"
1718
# - "pip install -q scipy --use-mirrors"
1819
- "pip install --no-deps git+git://github.com/Theano/Theano.git"
1920
script:
2021
- cd data
2122
- ./download.sh
23+
- ls
2224
- cd ../code
25+
- pwd
26+
- ls
2327
- export THEANO_FLAGS=warn.ignore_bug_before=all,on_opt_error=raise,on_shape_error=raise
2428
- python --version
2529
- nosetests test.py

0 commit comments

Comments
 (0)