It is python's vendor directory used to install python executables and python libraries.
Let's assume that you do not have panda library in your venv. IntelliJ ide's smart context action will propose you to install package panda library. That library will be installed in your venv directory.
import panda
In the Project View, you can uncheck show excluded files. This will hide all excluded files. venv is one of them.
Project View's > Settings Icon > Tree Apperance > Show Excluded Files.
But if you want only change that glowing highlighted color. Go to IntelliJ > Preferences or Settings > File Colors > Non-Project Files You can tweak the color or disable all colors in project view by unchecking Use in project view
发布评论
评论(1)
它是 python 的供应商目录,用于安装 python 可执行文件和 python 库。
假设您的 venv 中没有 panda 库。
IntelliJ ide 的智能上下文操作将建议您
安装包 panda
库。该库将安装在您的 venv 目录中。在项目视图中,您可以取消选中
显示排除的文件
。这将隐藏所有排除的文件。 venv 就是其中之一。项目视图>设置图标>树的外观>显示排除的文件。
但如果您只想更改发光的突出显示颜色。前往
IntelliJ >首选项或设置 >文件颜色>非项目文件
您可以通过取消选中
在项目视图中使用
来调整颜色或禁用项目视图中的所有颜色希望,它会有所帮助。
It is python's vendor directory used to install python executables and python libraries.
Let's assume that you do not have panda library in your venv.
IntelliJ ide's smart context action will propose you to
install package panda
library. That library will be installed in your venv directory.In the Project View, you can uncheck
show excluded files
. This will hide all excluded files. venv is one of them.Project View's > Settings Icon > Tree Apperance > Show Excluded Files.
But if you want only change that glowing highlighted color. Go to
IntelliJ > Preferences or Settings > File Colors > Non-Project Files
You can tweak the color or disable all colors in project view by unchecking
Use in project view
Hope, it helps.