File tree Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 8080
8181### 安装命令
8282
83- - 安装方法一< PIP源直接安装>:
83+ - 安装方法一 ** PIP源直接安装**
8484 ``` bash
8585 python -m pip install paddle-rec
8686 ```
87+ > 该方法会默认下载安装` paddlepaddle v1.7.2 cpu版本 ` ,若提示` PaddlePaddle ` 无法安装,则依照下述方法首先安装` PaddlePaddle ` ,再安装` PaddleRec ` :
88+ > - 可以在[ 该地址] ( https://pypi.org/project/paddlepaddle/1.7.2/#files ) ,下载PaddlePaddle后手动安装whl包
89+ > - 可以先pip安装` PaddlePaddle ` ,` python -m pip install paddlepaddle==1.7.2 -i https://mirror.baidu.com/pypi/simple `
90+ > - 其他安装问题可以在[ Paddle Issue] ( https://github.com/PaddlePaddle/Paddle/issues ) 或[ PaddleRec Issue] ( https://github.com/PaddlePaddle/PaddleRec/issues ) 提出,会有工程师及时解答
8791
88- - 安装方法二
89-
90- 源码编译安装
91- 1 . 安装飞桨 ** 注:需要用户安装版本 >=1.7.2 的飞桨**
92+ - 安装方法二 ** 源码编译安装**
93+
94+ - 安装飞桨 ** 注:需要用户安装版本 == 1.7.2 的飞桨**
9295
9396 ``` shell
94- python -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
97+ python -m pip install paddlepaddle==1.7.2 -i https://mirror.baidu.com/pypi/simple
9598 ```
9699
97- 2. 源码安装PaddleRec
100+ - 源码安装PaddleRec
98101
99102 ```
100103 git clone https://github.com/PaddlePaddle/PaddleRec/
101104 cd PaddleRec
102105 python setup.py install
103106 ```
104107
108+ - PaddleRec-GPU安装方法
109+
110+ 在使用方法一或方法二完成PaddleRec安装后,需再手动安装` paddlepaddle-gpu` ,并根据自身环境(Cuda/Cudnn)选择合适的版本,安装教程请查阅[飞桨-开始使用](https://www.paddlepaddle.org.cn/install/quick)
111+
105112
106113< h2 align=" center" > 一键启动< /h2>
107114
Original file line number Diff line number Diff line change 2626
2727about = {}
2828about ["__title__" ] = "paddle-rec"
29- about ["__version__" ] = "0.0.2 "
29+ about ["__version__" ] = "0.1.0 "
3030about ["__description__" ] = "paddle-rec"
3131about ["__author__" ] = "paddle-dev"
3232about [
"__author_email__" ]
= "[email protected] " @@ -96,7 +96,7 @@ def build(dirname):
9696build (dirname )
9797shutil .rmtree (dirname )
9898
99- print ('''
99+ print (u '''
100100\033 [32m
101101██████╗ █████╗ ██████╗ ██████╗ ██╗ ███████╗██████╗ ███████╗ ██████╗
102102██╔══██╗██╔══██╗██╔══██╗██╔══██╗██║ ██╔════╝██╔══██╗██╔════╝██╔════╝
You can’t perform that action at this time.
0 commit comments