Browse Source

Update env set up document

Shellmiao 2 years ago
parent
commit
3c55a0f2b4
1 changed files with 33 additions and 0 deletions
  1. 33 0
      README.md

+ 33 - 0
README.md

@@ -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项目的绝对路径
+