更改PyCharm的设置目录

时间:2016-05-25 08:41:08

标签: pycharm

我正在使用Ubuntu PyCharm Community Edition 2016.1.3,我想改变其default locations for settings, caches, plugins and logs

为此目的设计的任何环境变量?

1 个答案:

答案 0 :(得分:2)

bin/目录中,有 idea.properties 文件(文字格式):

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.config.path=${user.home}/.PyCharm/config

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.system.path=${user.home}/.PyCharm/system

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to user installed plugins folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.plugins.path=${idea.config.path}/plugins

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE logs folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.log.path=${idea.system.path}/log

您必须更改idea.config.path=${user.home}/.PyCharm/config行(并取消注释)并写下您想要的内容。

支持位于:https://www.jetbrains.com/help/idea/2016.1/file-idea-properties.html 所有人都说.IntelliJIdea必须由.PyCharm

取代