安装
brew install pdm
Linux 使用以下命令安装:
curl -sSL https://pdm.fming.dev/install-pdm.py | python3 -
使用
初始化
pdm init
添加依赖
pdm add fastapi
问题
即使设置了国内源安装还是很慢
把源名字改成 pypi:
[[tool.pdm.source]]
url = "https://private.pypi.org/simple"
verify_ssl = true
name = "pypi"