使用poetry安装依赖简易教程

1. 安装依赖

  • poetry 安装
    curl -sSL https://install.python-poetry.org | python3 -
    
  • 进入conda对应环境(或通过指令使用特定python)
  • 进入包含.toml文件的文件夹(若没有则portry init
  • poetry install(若没有则poetry add 另需添加的包

2. 报错解决:

  • 下载加速 / 报错HTTPSConnectionPool.toml文件中加入
    [[tool.poetry.source]]
    name = "tsinghua"
    url = "https://pypi.tuna.tsinghua.edu.cn/simple"
    
  • poetry install 时报错Failedraise InitError("Failed to create the collection: %s." % e) 等无法安装依赖问题,shell中输入以下指令(参考链接 )
    echo 'export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring' >> ~/.bashrc
    echo 'export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring' >> ~/.profile
    exec "$SHELL"
    
  • 可进一步参考教程 或官网文档

你可能感兴趣的:(python)