🌐
Quora
quora.com › Is-IntelliJ-IDEA-good-for-Python-although-it-is-not-a-Python-IDE-Or-should-I-download-VS-Code-or-PyCharm
Is IntelliJ IDEA good for Python, although it is not a Python IDE? Or should I download VS Code or PyCharm? - Quora
Answer (1 of 3): I use IntelliJ Idea with the Python plugin for python, it's okay. Pycharm and IntelliJ are both owned by Jet Brains, I haven't used Pycharm before but from what I can tell IntelliJ with the Python plugin is almost identical to Pycharm. Like I said I haven't used Pycharm before, ...
🌐
DEV Community
dev.to › blankly › an-honest-comparison-of-vs-code-vs-jetbrains-5-points-1mbd
An Honest Comparison of VS Code vs JetBrains - 5 Points - DEV Community
January 9, 2022 - This is the source code of IntelliJ which is the basis of pycharm: github.com/JetBrains/intellij-comm... Easy to use is subjective. I find JetBrains far more intuitive. Features I want are in the menus, I don't need to search commands for everything. Stuff "just works". I suggest getting your game up in both IDEs rather than being dogmatic. I used VSCode a lot, wrote plugins for it etc.
🌐
Hacker News
news.ycombinator.com › item
> People moved from IntelliJ to VSC because it was faster, simpler and language-... | Hacker News
November 30, 2021 - From my experience, most people who nowadays start programming, flock to vscode because it's free, used in most tutorials and then they simply do not understand why a certain paid IDE could be better, because they never tried it. Which is right with their statement.
🌐
StackShare
stackshare.io › stackups › intellij-idea-vs-pycharm-vs-visual-studio
IntelliJ IDEA vs PyCharm vs Visual Studio | What are the differences?
If you starting with Python then PyCharm is better. For Java I would suggest to go with IntelliJ IDEA but people also prefer eclipse so I would say try both and then decide. For JS/Angular/React I would suggest go with VSCode.
🌐
Hacker News
news.ycombinator.com › item
I wonder how intellij will survive if vscode becomes a standard for pretty much ... | Hacker News
September 7, 2018 - Which makes me wonder if kotlin will also survive if intellij goes bankrupt · I can say that in no way I found VSCode be able to to take on it, even the JavaScript support and they way they have integration with many JavaScript frameworks and other languages frameworks is something I cannot ...
🌐
StackShare
stackshare.io › stackups › intellij-idea-vs-visual-studio-code
IntelliJ IDEA vs Visual Studio Code | What are the differences?
If you starting with Python then PyCharm is better. For Java I would suggest to go with IntelliJ IDEA but people also prefer eclipse so I would say try both and then decide. For JS/Angular/React I would suggest go with VSCode.
🌐
Pythonanywhere
icrisstudio1.pythonanywhere.com › blog › choosing-the-right-ide-for-coding:-why-vs-code-is-your-best-bet
Choosing the Right IDE for Coding: Why VS Code Is Your ...
In the grand world of coding, choosing the right IDE is a bit like picking the right tool for a job. While PyCharm and IntelliJ IDEA are fantastic choices for specific languages, VS Code shines as an all-purpose ally.
Find elsewhere
🌐
Hacker News
news.ycombinator.com › item
I don’t really see IntelliJ and VSCode as competitors. VSCode competes with atom... | Hacker News
March 8, 2021 - VSCodes Java, Python, and Golang support is miles behind IntelliJ · FWIW, on my team at Microsoft where we write a lot of Go, theres a 50/50 split between IntelliJ/GoLand devs and VS Code devs and more people have switched to IntelliJ from VS Code than vice versa
🌐
Reddit
reddit.com › r/brdev › intellij or vs code
r/brdev on Reddit: IntelliJ or VS Code
July 30, 2025 -

Hey guys!

I'm new to Java and coming from Python. I'm used to VS Code, so I installed IntelliJ to work with Java since it's widely used and it's an IDE specifically for Java, as far as I know.

Anyway, I installed it yesterday and I found my VS Code to be not only prettier, but also better to work with. IntelliJ seems a bit slow to me, confusing (confusing file explorer), it doesn't show the wrong language alerts, like missing a letter in System, and it wasn't completing anything (I'm not talking about copilot, I mean not having to type the whole class name, having it appear there to tab).

Maybe I didn't set it up the best way possible? Could be, right?

But anyway, how positive is it to use IntelliJ and get used to it? Or in the end, does it not really make a difference? I know it's a tool and all.

🌐
Graphite
graphite.com › guides › intellij-vs-vscode
Comparing IntelliJ IDEA and Visual Studio Code: a developer's guide
This guide explores the differences between IntelliJ IDEA and Visual Studio Code, including features, pros and cons, and how Graphite integrates with VS Code for enhanced git workflows.
🌐
Reddit
reddit.com › r/python › what are the benefits of pycharm over vs code
r/Python on Reddit: What are the benefits of Pycharm over VS Code
January 23, 2023 -

Hi everyone,

it is not my intention to stoke any hate between the communities of VSCode and Pycharm. I was just wondering - I am working as a backend and cloud developer for nearly two years now. I have always used VSCode and just now found out that my company has Jetbrains licenses available.

I played around with Pycharm for a few days, but I am unable to find any functionalities that I did not have available in VSCode with plugins. On top of that Pycharm felt pretty bloated and slow at some times.

I know a lot of professional programmers are using Pycharm or equivalent Jetbrains products and highly recommend them. So I am sure Pycharm etc. have their strengths and I wonder what they might be?

Has anyone made the transition from VSCode to Pycharm and can tell me what the advantages can be?

Top answer
1 of 47
89
My story: 5 years of using PyCharm (mainly robotics, ML, algorithms), then switched to VSCode just because everyone seemed to switch. To avoid being religious, I worked for 2 months entirely in VSCode just to get used to it, switched back to PyCharm:) Here are the reasons: PyCharm shift+shift search works way better and faster than any search in VSCode. It is REALLY good. I can not comprehend why VSCode would not autocomplete self in class functions. I don't quite support this response. Typing self every function really annoyed me after 5 years of autocomplete - your fingers refuse to go along with the oppression:) Similarly - PyCharm's first autocomplete suggestion when writing a class is __init__. VSCode offers some operators. Eventually, Copilot is to the rescue anyway. PyCharm git window has a handy "commit+push". whereas VSCode goes with separate add, commit and push. So PyCharm has a nice old-school SVN feeling that works 99.999 per cent of the time. Also, the git conflict resolution window seems nicer in PyCharm. I couldn't figure out how to set up a remote interpreter with a deployment as I had in Pycharm. In Pycharm, I have a codebase locally on Mac, then use automatic ssh deployment to a workstation (pycharm in the background), then run a remote process remotely via Pycharm and see the logs. VSCode wants to have a codebase remot.ely and run it remotely (via the ssh plugin ). This didn't work for me if working "from home" with a crappy or intermittent internet connection (e.g. from a train or from my backyard etc). I bet I missed some obvious solution here. At the same time, I believe that VSCode is going to win in the long term, it's just a matter of time. Some obvious bugs in PyCharm were not solved for 2 years ( example ).
2 of 47
76
I use pycharm for my python programming, and VScode for other languages. Pycharm makes things so easy to do things like set up a debug configuration compared to VScode. I also prefer it’s variable viewer in a debug session. I also prefer the git integration over VScode’s
🌐
Reddit
reddit.com › r/devops › intellij vs vscode: is intellij still the best choice for a devops engineer?
r/devops on Reddit: IntelliJ vs VSCode: Is IntelliJ still the best choice for a DevOps Engineer?
February 6, 2024 -

I’ve been using JetBrains IDEs for many years now.

I have never had a real opportunity to use VSCode as an IDE - I was doing quick edits, found it very limited (no git blame, seriously?) and getting back to IntelliJ. I have never transitioned it from being a code editor to an IDE, installed few random plugins and wondered why is this better than having it out of the box.

But recently, because of some problems with IntelliJ WSL connection and then Copilot issues, I gave VSCode a chance… and TBH, I am wondering if IntelliJ is still the best choice for a DevOps engineer.

What do you think?

Disclaimer: everything i write from this point on, is my personal feeling after couple of days of using VSCode as my daily driver: it is not time tested opinion!!!

The features and functionalities I use or care about are (no particular order!):

  • git client with git blame, history and more advanced features

    • VSC: yes, plugin (out of the box only very basic functionality)

    • IntelliJ: yes

  • Search, replace and refactoring

    • VSC: yes

    • IntelliJ: yes

  • Copilot

    • VSC: yes (plugin, better)

    • IntelliJ: yes (plugin)

  • Good readability

    • VSC: is ok, but IntelliJ is much better. VSC is highly configurable, but has some stupid defaults (like too small indentation in file explorer)

    • IntelliJ: great

  • Kubernetes, GitHub, Gitlab, Terraform, integrations:

    • VSC: yes

    • IntelliJ yes

  • Fast startup time

    • VSC: yes

    • IntelliJ: jeez, yesterday I literally opened VSC, modified the file and pushed changes to reconcile the cluster before Jetbrains Gateway managed to connect to my WSL IntelliJ.
      IntelliJ always sucked here, but with additional overhead of Gateway connection it is really painfully slow to start up (T14s, Ryzen 7 Pro, 32GBs RAM).

  • Remote development

    • VSC: yes, way more stable experience

    • IntelliJ: yes, but feel like beta way more often as it should

  • Ability to open multiple projects in one window

    • VSC: yes, super easy and intuitive

    • IntelliJ: yes, but it is multistep setup that takes time what renders it useless for quick multi-projects edits

  • Supporting wide array of languages:

    • VSC: yes, via a plugin

    • IntelliJ: yes (formally via a plugin, but from other Jetbrains IDE). It’s certainly better when using more advanced features like Django support.

  • Intelligent autocompletion suggestions

    • VSC: yes, but the quality depends on language and is sometimes poor

    • IntelliJ: yes

  • Ability to highlight, lint and parse wide array of files (like nginx conf, ini files etc)

    • VSC: yes, probably via a plugin

    • IntelliJ: yes, probably via a plugin

  • Adding desired functions:

    • VSC: yes, and the plugin ecosystem is far bigger

    • IntelliJ: yes

So, basically I believe I can say I need support for everything, but I don’t need very sophisticated support in any of them.

Some time ago when using VSCode i felt like “i understand why it is free” when IntelliJ was a complete, polished package out of the box.

But now, when IntelliJ isn’t that shiny (just look at the tickets, threads like settings sync can be years old and the answer is “we have no plans to support it in remote development usage scenario... (so why tf haven't you removed this option?!)… I am wondering if VSCode shouldn’t be my editor of choice.I still test things like adding proper icons support, miss things like ability to recognize file type by its content (like Kustomize yaml) or fancy stuff like auto-converting curl pasted to .http file, but after a week it is like 90% of what I ever need or want to have.

PS. I have been using Jetbrains IDEs for many years now, so I am probably biased in matters like readability: it’s better for me because I am used things look like in IntelliJ.

PS2. Let’s compare features and not the price - I am perfectly aware IntelliJ is a paid option.

🌐
Stack Overflow
stackoverflow.com › questions › 74954188 › how-to-work-on-a-intellij-project-in-vs-code
java - How to work on a intelliJ project in VS Code? - Stack Overflow
Absolute-path Python function taking as argument a path relative to the directory of a script (.py) or Jupyter notebook (.ipynb) file
🌐
TrustRadius
trustradius.com › compare-products › intellij-idea-vs-microsoft-visual-studio-code
IntelliJ IDEA vs Microsoft Visual Studio Code | TrustRadius
February 5, 2024 - Compare IntelliJ IDEA vs Microsoft Visual Studio Code. 1328 verified user reviews and ratings of features, pros, cons, pricing, support and more.