PyCharm一直索引或索引过大占用系统盘问题

PyCharm项目下的某个目录设置为不建立索引
设置方法:打开软件 File | Settings | Project | Project Structure
选择具体的项目-选中具体的目录-点击“Excluded”,选中的目录文件夹变为棕黄色,保存后此目录不再自动建立索引。

PyCharm修改缓存目录路径
Pycharm项目缓存C:\Users\admin\ .PhpStorm2018.1\system\caches下面的content.dat.storageData经常很大,占用系统盘空间,可以修改设置将缓存目录设置到非系统盘。
设置方法:打开软件 Help | Edit Custom Properties…
在打开的文件中编辑内容:
idea.config.path=d:/work/idea/caches/trunk-config
idea.system.path=d:/work/idea/caches/trunk-system
idea.plugins.path=d:/work/idea/caches/trunk-plugins

保存后重启软件,即可将缓存目录转移到D盘。
参考文章:https://intellij-support.jetbrains.com/hc/en-us/articles/207240985

你可能感兴趣的:(Python)