python pip install git+ssh
网上比较容易找到的是pip install git+https://github.com/waketzheng/fastapi-cdn-host.git这种方式
如果电脑未配置或没启用外网加速器,这种方式简直慢得像蜗牛,改用ssh则会块很多很多:
一般情况
pip install git+ssh://git@github.com/waketzheng/fastapi-cdn-host.git
即:只需把https://改成ssh://@git就可以了
特殊情况,例如要安装特定分支
- 语法
pip install git+ssh://git@github.com/<username>/<repo>.git@<branch-or-tag>#egg=<package-name>
- 示例
pip install git+ssh://git@github.com/waketzheng/aerich.git@type-hints#egg=aerich