Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
a1114411
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a1114411
编写于
6月 17, 2017
作者:
T
Travis CI
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Deploy to GitHub Pages:
0f6bca26
上级
b3c0fbf8
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
27 addition
and
1 deletion
+27
-1
develop/doc/_sources/getstarted/build_and_install/build_from_source_en.md.txt
.../getstarted/build_and_install/build_from_source_en.md.txt
+13
-0
develop/doc/getstarted/build_and_install/build_from_source_en.html
...oc/getstarted/build_and_install/build_from_source_en.html
+13
-0
develop/doc/searchindex.js
develop/doc/searchindex.js
+1
-1
未找到文件。
develop/doc/_sources/getstarted/build_and_install/build_from_source_en.md.txt
浏览文件 @
a1114411
...
@@ -22,6 +22,7 @@ To compile the source code, your computer must be equipped with the following de
...
@@ -22,6 +22,7 @@ To compile the source code, your computer must be equipped with the following de
- **CMake**: CMake >= 3.0 (at least CMake 3.4 on Mac OS X)
- **CMake**: CMake >= 3.0 (at least CMake 3.4 on Mac OS X)
- **BLAS**: MKL, OpenBlas or ATLAS
- **BLAS**: MKL, OpenBlas or ATLAS
- **Python**: only support Python 2.7
- **Python**: only support Python 2.7
- **Go**
**Note:** For CUDA 7.0 and CUDA 7.5, GCC 5.0 and up are not supported!
**Note:** For CUDA 7.0 and CUDA 7.5, GCC 5.0 and up are not supported!
For CUDA 8.0, GCC versions later than 5.3 are not supported!
For CUDA 8.0, GCC versions later than 5.3 are not supported!
...
@@ -107,6 +108,18 @@ As a simple example, consider the following:
...
@@ -107,6 +108,18 @@ As a simple example, consider the following:
sudo apt-get install -y python python-pip python-numpy libpython-dev bison
sudo apt-get install -y python python-pip python-numpy libpython-dev bison
sudo pip install 'protobuf==3.1.0.post1'
sudo pip install 'protobuf==3.1.0.post1'
# Install Go
# You can follow https://golang.org/doc/install for a detailed explanation.
wget -O go.tgz https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz && \
tar -C $HOME -xzf go.tgz && \
mkdir $HOME/gopath && \
rm go.tgz
# Setup environment variables
export GOROOT=$HOME/go
export GOPATH=$HOME/gopath
export PATH=$PATH:$GOROOT/bin
# install cmake 3.4
# install cmake 3.4
curl -sSL https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz | tar -xz && \
curl -sSL https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz | tar -xz && \
cd cmake-3.4.1 && ./bootstrap && make -j4 && sudo make install && \
cd cmake-3.4.1 && ./bootstrap && make -j4 && sudo make install && \
...
...
develop/doc/getstarted/build_and_install/build_from_source_en.html
浏览文件 @
a1114411
...
@@ -210,6 +210,7 @@
...
@@ -210,6 +210,7 @@
<li><strong>
CMake
</strong>
: CMake
>
= 3.0 (at least CMake 3.4 on Mac OS X)
</li>
<li><strong>
CMake
</strong>
: CMake
>
= 3.0 (at least CMake 3.4 on Mac OS X)
</li>
<li><strong>
BLAS
</strong>
: MKL, OpenBlas or ATLAS
</li>
<li><strong>
BLAS
</strong>
: MKL, OpenBlas or ATLAS
</li>
<li><strong>
Python
</strong>
: only support Python 2.7
</li>
<li><strong>
Python
</strong>
: only support Python 2.7
</li>
<li><strong>
Go
</strong></li>
</ul>
</ul>
<p><strong>
Note:
</strong>
For CUDA 7.0 and CUDA 7.5, GCC 5.0 and up are not supported!
<p><strong>
Note:
</strong>
For CUDA 7.0 and CUDA 7.5, GCC 5.0 and up are not supported!
For CUDA 8.0, GCC versions later than 5.3 are not supported!
</p>
For CUDA 8.0, GCC versions later than 5.3 are not supported!
</p>
...
@@ -290,6 +291,18 @@ sudo apt-get install -y git curl gcc g++ gfortran make build-essential automake
...
@@ -290,6 +291,18 @@ sudo apt-get install -y git curl gcc g++ gfortran make build-essential automake
sudo apt-get install -y python python-pip python-numpy libpython-dev bison
sudo apt-get install -y python python-pip python-numpy libpython-dev bison
sudo pip install
<span
class=
"s1"
>
'
protobuf==3.1.0.post1
'
</span>
sudo pip install
<span
class=
"s1"
>
'
protobuf==3.1.0.post1
'
</span>
<span
class=
"c1"
>
# Install Go
</span>
<span
class=
"c1"
>
# You can follow https://golang.org/doc/install for a detailed explanation.
</span>
wget -O go.tgz https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
<span
class=
"o"
>
&&
</span>
<span
class=
"se"
>
\
</span>
tar -C
<span
class=
"nv"
>
$HOME
</span>
-xzf go.tgz
<span
class=
"o"
>
&&
</span>
<span
class=
"se"
>
\
</span>
mkdir
<span
class=
"nv"
>
$HOME
</span>
/gopath
<span
class=
"o"
>
&&
</span>
<span
class=
"se"
>
\
</span>
rm go.tgz
<span
class=
"c1"
>
# Setup environment variables
</span>
<span
class=
"nb"
>
export
</span>
<span
class=
"nv"
>
GOROOT
</span><span
class=
"o"
>
=
</span><span
class=
"nv"
>
$HOME
</span>
/go
<span
class=
"nb"
>
export
</span>
<span
class=
"nv"
>
GOPATH
</span><span
class=
"o"
>
=
</span><span
class=
"nv"
>
$HOME
</span>
/gopath
<span
class=
"nb"
>
export
</span>
<span
class=
"nv"
>
PATH
</span><span
class=
"o"
>
=
</span><span
class=
"nv"
>
$PATH
</span>
:
<span
class=
"nv"
>
$GOROOT
</span>
/bin
<span
class=
"c1"
>
# install cmake 3.4
</span>
<span
class=
"c1"
>
# install cmake 3.4
</span>
curl -sSL https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz
<span
class=
"p"
>
|
</span>
tar -xz
<span
class=
"o"
>
&&
</span>
<span
class=
"se"
>
\
</span>
curl -sSL https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz
<span
class=
"p"
>
|
</span>
tar -xz
<span
class=
"o"
>
&&
</span>
<span
class=
"se"
>
\
</span>
<span
class=
"nb"
>
cd
</span>
cmake-3.4.1
<span
class=
"o"
>
&&
</span>
./bootstrap
<span
class=
"o"
>
&&
</span>
make -j4
<span
class=
"o"
>
&&
</span>
sudo make install
<span
class=
"o"
>
&&
</span>
<span
class=
"se"
>
\
</span>
<span
class=
"nb"
>
cd
</span>
cmake-3.4.1
<span
class=
"o"
>
&&
</span>
./bootstrap
<span
class=
"o"
>
&&
</span>
make -j4
<span
class=
"o"
>
&&
</span>
sudo make install
<span
class=
"o"
>
&&
</span>
<span
class=
"se"
>
\
</span>
...
...
develop/doc/searchindex.js
浏览文件 @
a1114411
因为 它太大了无法显示 source diff 。你可以改为
查看blob
。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录