|
@@ -0,0 +1,33 @@
|
|
|
+# Fate-flow源码阅读记录
|
|
|
+
|
|
|
+## 环境配置
|
|
|
+
|
|
|
+将Fate-flow项目PULL至本地,链接为: https://github.com/FederatedAI/FATE-Flow
|
|
|
+
|
|
|
+Python使用版本:
|
|
|
+
|
|
|
+- Python 3.6
|
|
|
+
|
|
|
+Pip安装需要的包:
|
|
|
+
|
|
|
+- grpcio
|
|
|
+- requests
|
|
|
+- werkzeug
|
|
|
+- flask
|
|
|
+- requests_toolbelt
|
|
|
+- cachetools
|
|
|
+- ruamel
|
|
|
+- ruamel.yaml
|
|
|
+- filelock
|
|
|
+- peewee
|
|
|
+
|
|
|
+```powershell
|
|
|
+pip install grpcio requests werkzeug flask requests_toolbelt cachetools ruamel ruamel.yaml filelock peewee -i https://pypi.mirrors.ustc.edu.cn/simple/
|
|
|
+```
|
|
|
+
|
|
|
+由于需要引用Fate项目中的代码,需要将Fate项目PULL下来做引用
|
|
|
+
|
|
|
+1. 将Fate项目从[此处](https://github.com/FederatedAI/FATE)PULL下来
|
|
|
+2. 在项目所使用的Python环境根目录下,寻找\Lib\site-packages目录,在其中创建mypath.pth文件
|
|
|
+3. 在mypath.pth文件中写入Fate以及Fate flow项目的绝对路径
|
|
|
+
|