编程语言
首页 > 编程语言> > Python - poetry(3)配置项详解

Python - poetry(3)配置项详解

作者:互联网

config 命令

文件目录

 

查看当前配置列表

poetry config --list

 

目前就这些配置项

 

查看某个配置项

poetry config virtualenvs.path

 

修改某个配置项

poetry config virtualenvs.path /path/to/cache/directory/virtualenvs

 

移除某个配置项

poetry config virtualenvs.path --unset

 

使用环境变量

 

栗子:virtualenvs.path

export POETRY_VIRTUALENVS_PATH=/path/to/virtualenvs/directory

 

配置项详解

cache-dir

poetry 使用的缓存目录的路径

默认目录路径

 

installer.parallel

安装程序时并行执行,默认 true

 

virtualenvs.create

 

virtualenvs.in-project

 

virtualenvs.path 

在其中创建虚拟环境的目录

默认: {cache-dir}/virtualenvs 

像我上面的配置就是: /Users/polo/Library/Caches/pypoetry/virtualenvs 

 

标签:virtualenvs,Python,配置,poetry,详解,path,pypoetry,config
来源: https://www.cnblogs.com/poloyy/p/15269573.html