We’re excited to announce that the JetBrains extension, supporting all their IDEs, is now available for download! You can get it through the following link:
Download CodeGPT - Jetbrains
Step-by-Step Guide to Install the JetBrains Extension from Disk
Download the Extension:
Visit the link provided and download the extension file to your computer.
Open Your JetBrains IDE:
Launch the JetBrains IDE you’re using (IntelliJ IDEA, PyCharm, WebStorm, etc.).
Access Plugin Settings:
Go to File in the menu bar.
Select Settings or Preferences, depending on your operating system.
Install from Disk:
In the settings window, select Plugins from the side panel.
Click the gear icon ⚙️ in the top-right corner.
Choose Install Plugin from Disk...
Select the Extension File:
Navigate to the location where you downloaded the extension file.
Select the file and click Open.
Confirm Installation:
Follow the on-screen instructions to complete the installation.
You may need to restart your IDE for the changes to take effect.
That’s it! The JetBrains extension should now be installed and ready to use in your IDE.
Possible Issues
If you encounter any issues during or after installation, follow these troubleshooting steps:
Port Occupied by Another Process (macOS)
If a required port is already in use by another process, you can free it by following these steps:
Identify the Process Using the Port
Run the following command to list processes using the desired port:sudo lsof -i -P | grep LISTEN | grep :$PORT
Replace
$PORT
with the port number. The output will show details like this:COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME node 25164 <user> ... <port>
Note the PID (process ID) in the second column.
Stop the Process
Use thekill
command to stop the process:sudo kill -9 <PID>
For example, if the PID is
25164
:sudo kill -9 25164
Verify the Process is Stopped
Run thelsof
command again to confirm the process is no longer listening:sudo lsof -i -P | grep LISTEN | grep :$PORT
If the process still appears, it may be restarting automatically.
Warning:
Always double-check the process before killing it to avoid disrupting critical system services.
Troubleshooting Plugin Download Issues
If we encounter problems downloading the plugin, it is possible to complete the download by disabling Windows Defender.