Skip to content

Commit

Permalink
Add automake in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gangliao committed Jan 17, 2017
1 parent ee59d10 commit 70dfd7f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/getstarted/build_and_install/build_from_source_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ As a simple example, consider the following:
```bash
# necessary
sudo apt-get update
sudo apt-get install -y git curl gcc g++ gfortran make build-essential
sudo apt-get install -y python python-pip python-numpy libpython-dev
sudo apt-get install -y git curl gcc g++ gfortran make build-essential autotools-dev
sudo apt-get install -y python python-pip python-numpy libpython-dev automake
sudo pip install 'protobuf==3.1.0.post1'
# install cmake 3.4
Expand Down
1 change: 1 addition & 0 deletions paddle/scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ RUN apt-get update && \
apt-get install -y wget unzip tar xz-utils bzip2 gzip coreutils && \
apt-get install -y curl sed grep graphviz libjpeg-dev zlib1g-dev && \
apt-get install -y python-numpy python-matplotlib gcc g++ gfortran && \
apt-get install -y autotools-dev automake && \
apt-get clean -y

RUN pip install --upgrade pip && \
Expand Down
1 change: 1 addition & 0 deletions paddle/scripts/docker/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ RUN apt-get update && \
apt-get install -y wget unzip tar xz-utils bzip2 gzip coreutils && \
apt-get install -y curl sed grep graphviz libjpeg-dev zlib1g-dev && \
apt-get install -y python-numpy python-matplotlib gcc g++ gfortran && \
apt-get install -y autotools-dev automake && \
apt-get clean -y

RUN pip install --upgrade pip && \
Expand Down

0 comments on commit 70dfd7f

Please sign in to comment.