|
|
@@ -2,6 +2,18 @@
|
|
|
|
|
|
> 以下安装过程默认用户已安装好Anaconda和CUDA 10.1(有GPU卡的情况下), Anaconda的安装可参考其官网https://www.anaconda.com/
|
|
|
|
|
|
+## Github代码代码
|
|
|
+github代码会跟随开发进度不断更新,安装只需将上面步骤中的`pip install paddlex`改成如下方式即可
|
|
|
+
|
|
|
+> 注意其中pycocotools在Windows安装较为特殊,可参考下面的Windows安装命令
|
|
|
+
|
|
|
+```
|
|
|
+git clone https://github.com/PaddlePaddle/PaddleX.git
|
|
|
+cd PaddleX
|
|
|
+git checkout develop
|
|
|
+python setup.py install
|
|
|
+```
|
|
|
+
|
|
|
## Linux/Mac安装
|
|
|
```
|
|
|
# 使用conda创建虚拟环境
|
|
|
@@ -36,12 +48,3 @@ pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonA
|
|
|
# 安装PaddleX
|
|
|
pip install paddlex -i https://mirror.baidu.com/pypi/simple
|
|
|
```
|
|
|
-
|
|
|
-## 安装github上代码
|
|
|
-github代码会跟随开发进度不断更新,安装只需将上面步骤中的`pip install paddlex`改成如下方式即可
|
|
|
-```
|
|
|
-git clone https://github.com/PaddlePaddle/PaddleX.git
|
|
|
-cd PaddleX
|
|
|
-git checkout develop
|
|
|
-python setup.py install
|
|
|
-```
|