Skip to content

Commit d20d774

Browse files
author
yjxiong
committed
Merge branch 'master' of https://github.com/yjxiong/caffe
2 parents f1f593c + b1f85f6 commit d20d774

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

docs/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The main requirements are `numpy` and `boost.python` (provided by boost). `panda
5959

6060
You can install the dependencies with
6161

62-
pip install -r /path/to/caffe/python/requirements.txt
62+
for req in $(cat requirements.txt); do sudo pip install $req; done
6363

6464
but we highly recommend first installing the [Anaconda](https://store.continuum.io/cshop/anaconda/) Python distribution, which provides most of the necessary packages, as well as the `hdf5` library dependency.
6565

python/requirements.txt

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
Cython>=0.19.2
2-
h5py>=2.2.0
2+
numpy>=1.7.1
3+
scipy>=0.13.2
4+
scikit-image>=0.9.3
5+
scikit-learn>=0.14.1
6+
matplotlib>=1.3.1
37
ipython>=1.1.0
8+
h5py>=2.2.0
49
leveldb>=0.191
5-
matplotlib>=1.3.1
610
networkx>=1.8.1
711
nose>=1.3.0
8-
numpy>=1.7.1
912
pandas>=0.12.0
13+
python-dateutil>=1.4,<2
1014
protobuf>=2.5.0
1115
python-gflags>=2.0
12-
scikit-image>=0.9.3
13-
scikit-learn>=0.14.1
14-
scipy>=0.13.2

0 commit comments

Comments
 (0)