您现在的位置是:课程教程文章

python poetry创建虚拟环境

2023-12-13 23:31课程教程文章 人已围观

1、通过poetry env use <python version>来指定Python版本, 然后创建虚拟环境。

Poetry默认使用系统默认的Python环境。

默认的虚拟环境配置是存放在/home/{user}/.cache/pypoetry目录的, 可以直接查看配置了解。

➜poetryconfig--list
#poetry使用的缓存目录的路径
cache-dir="/home/so1n/.cache/pypoetry"
experimental.new-installer=true
installer.parallel=true
#默认值为true,如果执行poetryinstall/poetryadd时没有虚拟环境,就自动创建一个虚拟环境,设置为false的话,当虚拟环境不存在时,会将包安装到系统环境
virtualenvs.create=true
#默认值为false,设置为true的话,会在当前项目目录下创建虚拟环境
virtualenvs.in-project=false
#虚拟环境的路径,默认路径{cache-dir}\virtualenvs
virtualenvs.path="{cache-dir}/virtualenvs"#/home/so1n/.cache/pypoetry/virtualenvs

2、poetry更改命令后再创建虚拟环境,达到在项目路径下创建虚拟环境的效果。

默认的使用习惯(包括一些第三方包) 都是认为venv是创建在项目路径下的, 同时这也方便管理。

#更改配置
➜poetryconfigvirtualenvs.in-projecttrue

以上就是python poetry创建虚拟环境的方法,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:python poetry创建虚拟环境

上一篇:python poetry如何安装依赖

下一篇:没有了

站点信息

  • 文章统计篇文章