PyCharm: always mark venv directory as excluded(PyCharm:始终将 venv 目录标记为已排除)
问题描述
在 Python 3 中,我不再在 ~/.virtualenvs
中创建虚拟环境,而是将它们保存在项目目录 ./venv
In Python 3, I've moved away from creating virtualenvs in ~/.virtualenvs
and towards keeping them in the project directory ./venv
但是,现在每个 PyCharm 项目中的搜索结果都包括来自 venv
子目录的结果,直到您手动右键单击并将它们从项目中排除.
However now search results in every PyCharm project include results from venv
subdirectories, until you manually right-click and exclude them from the project.
如何从 PyCharm 全局索引/搜索中省略名为 venv
的目录?
How to omit directories named venv
from PyCharm indexing/searching, globally?
推荐答案
In File >设置 >项目:>项目结构
在底部是排除文件:
你可以放一些东西在那里像
In File > Settings > Project: > Project Structure
at the bottom is Exclude files:
You can put something in there like
venv
或 venv;coverage.xml
(根据您的评论)
venv
or venv;coverage.xml
(given your comment)
它似乎无法识别路径(例如 foo/venv
),但这符合您的要求.
It doesn't seem to recognize paths (e.g. foo/venv
), but this does what you requested.
这篇关于PyCharm:始终将 venv 目录标记为已排除的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PyCharm:始终将 venv 目录标记为已排除
基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 筛选NumPy数组 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01