Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JetBrains Toolbox in Windows to install IDEs to specific folders other than ones within drive C

I want to install PyCharm, PhpStorm, etc. into some folder on drive D. Though JetBrains Toolbox not having the option to do so in my view.

So the question is that is it possible to customize the installation folder for JetBrains IDEs when installing via Toolbox?

like image 736
Nam G VU Avatar asked Dec 21 '17 16:12

Nam G VU


People also ask

How do I change the location of my Jetbrain toolbox?

Go to the Toolbox App settings (choose Settings under the locknut icon in the upper right-hand corner of the main Toolbox App screen), scroll down to the Tools section and change the Tools install location field.

Where is IntelliJ installation directory?

If you installed IntelliJ IDEA via the Toolbox App, the plugins directory will be located in the installation directory. To find the installation directory, open the settings of the IDE instance in the Toolbox App, expand Configuration and look for the Install location field.

Why should I use Jetbrains toolbox?

Why use the JetBrains Toolbox? It includes more than 15 tools for professional development. Each tool has been developed specifically for its technology. All the tools are regularly updated, which ensures that the latest technologies are available.


2 Answers

Yes, you can configure the install location for apps in the Toolbox settings. However, this will install ALL apps under the specified directory (and move existing ones there). If you want to define a specific install location for each IDE, then that is not possible... yet.

Also see this support question. The second answer explains how you can manually update the install_location property in .settings.json. This will change the install location for future installations, and your existing apps will not be moved.

like image 165
Zim Avatar answered Sep 21 '22 17:09

Zim


[Windows 10] I found a manual location changing option that is not well explained on any forum.

After you install Jetbrains Toolbox, if you cannot change the Tool install location from the app UI, and it goes into "Failing to change location, because application is in use, or something like that" if you are trying to change from there, close the Toolbox application(kill it from Task manager, or close it from the toolbar), and after you go to the default installation location of the Toolbox app(more info about this, here: https://toolbox-support.jetbrains.com/hc/en-us/articles/115000978804-Where-are-the-IDEs-located-on-my-hard-drive-) and open .settings.json file

In the .settings.json file you need to add/update the following code line:

"install_location": "<default_location>",

There, add your desired install location instead of <default_location> if there exists the line in the file. If this line does not exist, add it the begining of the file. Don't forget to add the " , " in the end of the line.

Please help to spread this message to our fellow friends who are using Jetbrains Toolbox and are having this problem.

like image 40
Mihail Stanescu Avatar answered Sep 18 '22 17:09

Mihail Stanescu