Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 700 Bytes

File metadata and controls

64 lines (42 loc) · 700 Bytes

安装指南

从PyPI安装

pip install codet

从源代码安装

  1. 克隆仓库
git clone https://github.com/host452b/codet.git
cd codet
  1. 安装依赖
pip install -e .

或者安装开发依赖:

pip install -e ".[dev]"

验证安装

安装完成后,可以运行以下命令验证安装是否成功:

codet --version

打包发布

如果你想自己打包发布,可以按照以下步骤操作:

  1. 安装打包工具
pip install build twine
  1. 构建包
python -m build
  1. 上传到PyPI
python -m twine upload dist/*

支持的平台

  • Windows
  • macOS
  • Linux