Stopwatch Kit
Github
Blogs
Search…
简体中文
欢迎
常见问题
Python
概述
安装
入门
更新日志
Github 存储库
Powered By
GitBook
安装
本页将引导您如何在 Python 运行时环境中安装 Stopwatch Kit。
源代码
我们将 Stopwatch-Kit for Python 的完整源代码托管在 Github 的公开存储库中,您可以前往
https://github.com/nobody-night/stopwatch-python
获取。
安装
下文安装示例 Shell 命令中假定 pip 和 python 指示 pip3 和 python3。
从 PyPI 安装
通常情况下,这是您的首选安装方式。目前我们在 Python Package Index 和 SmallSO Libget 上发布并托管 Stopwatch Kit 的打包 Wheel 文件。
Python Package Index
Tips
: 很抱歉,目前由于包索引名称与一个无效的包冲突,暂时不支持通过此方式安装。目前我们正在积极与无效包的所有者取得联系并获得转让。
1
pip
install
stopwatch
Copied!
SmallSO Libget
1
pip
install
https://libget.com/pypi/smallso/stopwatch-release-py3-none-any.whl
Copied!
若不能正常访问 PyPI 或延时过高,应选择选择通过 SmallSO Libget 拉取并安装。
从源代码安装
安装依赖 Python 代码包
1
pip
install
setuptools
2
pip
install
wheel
Copied!
从 Github 克隆 Python SDK 的源代码
1
git
clone https://github.com/nobody-night/stopwatch-python.git
Copied!
打包 Stopwatch Kit
1
cd
stopwatch-python
2
python setup.py sdist bdist_wheel
Copied!
安装 Stopwatch Kit
1
pip
install
dist/stopwatch-release-py3-none-any.whl
Copied!
卸载
下文安装示例 Shell 命令中假定 pip 和 python 指示 pip3 和 python3。
1
pip uninstall stopwatch
Copied!
Python - Previous
概述
Next - Python
入门
Last modified
2yr ago
Copy link
Contents
源代码
安装
从 PyPI 安装
从源代码安装
卸载