Skip to content

安装

必备条件

包管理器安装

F2 可单独使用,也可安装到现有项目中。在这两种情况下,你都可以使用以下命令选择不同版本安装:

sh
$ pip install f2                # 最新版本
$ pip install f2==x.x.x.x       # 指定版本
$ pip install -U f2             # 更新版本
$ pip uninstall f2              # 卸载版本
sh
$ pip3 install f2                # 最新版本
$ pip3 install f2==x.x.x.x       # 指定版本
$ pip3 install -U f2             # 更新版本
$ pip3 uninstall f2              # 卸载版本
sh
$ pip3 install f2                # 最新版本
$ pip3 install f2==x.x.x.x       # 指定版本
$ pip3 install -U f2             # 更新版本
$ pip3 uninstall f2              # 卸载版本
收到依赖或其他警告?

如果提示python或pip版本错误,请务必更新到必备条件的版本。

如果你的网络环境缓慢,无法正常访问官方镜像。请使用可以正常访问的第三方镜像源。

sh
$ pip install -i https://pypi.tuna.tsinghua.edu.cn/simple f2
sh
$ pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple f2
sh
$ pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple f2

编译安装

如果你是开发者需要修改代码编译安装项目,可以使用以下命令:

sh
$ git clone https://github.com/Johnserf-Seed/f2.git
$ cd f2
$ pip install -e .  #注意点前面有一个空格
sh
$ git clone https://github.com/Johnserf-Seed/f2.git
$ cd f2
$ pip3 install -e . #注意点前面有一个空格
sh
$ git clone https://github.com/Johnserf-Seed/f2.git
$ cd f2
$ pip3 install -e . #注意点前面有一个空格

提示

F2 是一个异步库,开发者在调用方法前请仔细阅读相关文档

更多详情,请参阅 高级指南。 更多接口,请参阅 开发者接口

Released under the Apache-2.0 license.