安装
必备条件
- Python ≥ 3.9, 推荐版本3.11.1。
- Windows Terminal 终端,通过命令行界面(CLI)访问。
- 支持Python 语法的文本编辑器。
- Git ,用于开发者从GitHub上克隆项目。
包管理器安装
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 . #注意点前面有一个空格