⇤ ← Revision 1 as of 2021-01-10 15:43:24
Size: 2278
Comment: Transfered information from another article and added subscription details
|
Size: 1496
Comment: drop jetbrains business info, that will get out of date and is too much advertising of non-free software
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
JetBrains is a company producing commercial IDEs for multiple programming languages including Python (pycharm), C/C++ (clion), Java (intellij), web development (Webstorm), ... These programs, except for pycharm-community (open source license: https://www.jetbrains.com/pycharm/download/#section=linux) and intellij-community (open source apache 2.0 license: https://www.jetbrains.com/idea/download/#section=linux), require either a monthly or a yearly subscription to use. === Subscription info === Subscriptions generally cost starting at 90 USD per year for one tool (i.e. Clion) and $ 250 USD for all JetBrains products for each user more info: https://www.jetbrains.com/clion/buy/#personal?billing=yearly. JetBrains products can be used for free in some use cases such as open source projects or for members of recognized academic institutions (students and teachers), more info on special offers can be found here: https://www.jetbrains.com/clion/buy/#discounts?billing=yearly |
JetBrains is a company producing proprietary commercial IDEs as well as two open source ones: pycharm-community and intellij-community ([[https://www.jetbrains.com/idea/download/#section=linux|download]]). |
Description
JetBrains is a company producing proprietary commercial IDEs as well as two open source ones: pycharm-community and intellij-community (download).
Install instructions
Since there is no official debian package for any of the jetbrains products in the official repositories. There are two methods to install jetbrains software on Debian either by using Jonas Groegor's unofficial PPA or by using Jetbrains official snap packages.
unofficial ppa
Jonas Groegor maintains an unofficial for Ubuntu and Debian: https://github.com/JonasGroeger/jetbrains-ppa. Installing from his repository works in Debian Buster.
Execute the following commands to install pycharm-community on debian buster using his ppa:
curl -s https://s3.eu-central-1.amazonaws.com/jetbrains-ppa/0xA6E8698A.pub.asc | sudo apt-key add - echo "deb http://jetbrains-ppa.s3-website.eu-central-1.amazonaws.com bionic main" | sudo tee /etc/apt/sources.list.d/jetbrains-ppa.list > /dev/null sudo apt update sudo apt install pycharm-community
snap
Jetbrains maintains official snap packages for their products.
Here are instructions on how to install pycharm-community using the official snap package: Install snapd
sudo apt install snapd
Install pycharm-community as a snap package
sudo snap install pycharm-community --classic
Run pycharm
snap run pycharm-community