关于pip:Python-包管理工具-poetryqbit

34次阅读

共计 213 个字符,预计需要花费 1 分钟才能阅读完成。

  • 官网文档:https://python-poetry.org/docs/
  • 将虚拟目录放在我的项目内

    poetry config virtualenvs.in-project true
  • 软件包国内镜像(pyproject.toml)

    [[tool.poetry.source]]
    name = "aliyun"
    url = "https://mirrors.aliyun.com/pypi/simple/"
    default = true

本文出自 qbit snap

正文完
 0