RStudio equivalent for Python
-
What is the closest equivalent to RStudio for Python? I love RStudio - the integrated help files, integrated package searching and downloading, the extra little features like Knitr and RMarkdown, and Git integration. I've pretty much given up on Python and have been using R for years now, because I could never find an IDE for Python that did all the things I wanted. So what's the closest thing to RStudio for Python development? In particular, I want something with integrated help, auto-complete for functions and arguments, the ability to browse, download and install Python libraries from a central repository, and the ability to manage "projects", with a collection of associated files in a directory
-
Answer:
https://profiles.google.com/115212051037621986145/buzz/CGh9MoWU53V likes http://www.jetbrains.com/pycharm/ (and so do I - I spend 8 hours a day in it, at least).
Jimbob at Ask.Metafilter.Com Visit the source
Other answers
(and it's come a LONG way since that 2-year-old post was written)
dmd
I also love PyCharm. Also PHPStorm by the same company. I spend a ridiculous amount of time in those two apps. My only significant complaint is the gig of memory it can consume, but thats a drawback of any full-featured IDE. I don't think it can install libraries though (although I've never actually checked); for that i use pip.
cgg
Just checking out PyCharm at the moment. It does look like it can install packages!However, it's also on a 30-day limited trial. I should have said, I prefer free/open source.
Jimbob
Like you, I've tried to find a Python counterpart of RStudio and I finally settled on http://code.google.com/p/pythonxy/, which contains the https://code.google.com/p/spyderlib/ IDE. I'm not sure about installing Python libraries with it, but it's free.
Bokmakierie
Okay, PyCharm review: Tried to set up a new project, selected a freshly installed Python 2.7.3 as the interpreter. Tried to get PyCharm to install some packages - I started with pandas, but it complained that numpy wasn't installed. So, the packaging system doesn't take into account dependencies. Okay. So then I tried to install numpy, which is pretty standard - PyCharm threw up a window filled with errors as to why numpy couldn't be installed (missing libraries, missing batch files, repositories not found). Then PyCharm froze and had to be killed. Starting to remember the perverted handing of packages is why I quit Python and switched to R...
Jimbob
The general goodness in Python package handling is to use pip on the command line--that's where "it just works" happens. I've never seen an IDE that handles this smoothly. That said, I've worked in a variety of IDEs with Python, and the two big ones are PyCharm and PyDev in Eclipse (or in Aptana Studio). Without expecting them to do package handling, I've been quite satisfied with them--but part of that satisfaction derives from me doing webapps in Django, so the IDE handling the full stack of HTML, Django templates, Python, and git is what made me happy.
fatbird
I'm assuming you're on a Windows machine? Either way, for package management and Python, you really need to get familiar with the big guys, all command-line based: http://www.pip-installer.org/en/latest/index.html or easy_install. I perfer pip because it's easier to uninstall packages. For a free IDE, I'd try Aptana. It was decent given the price when i tried it a couple years ago.
cgg
Should say that I'm using both Windows and OSX, but would prefer OSX. Once again, since RStudio is so completely platform-agnostic and works the same on Windows, OSX and on it's Linux server version, pointing out which OS I'm on slipped my mind...
Jimbob
Just started using Python. Pip for package management and installing, Spyder for Rstudio-like IDE, pandas and numpy for R-like data handling, matplotlib for graphics. The Enthought Python distribution is free for academics and has a lot of useful packages integrated. Packages are more complex in python. I agree it's harder than RStudio. I figure this is because python has to be a lot more flexible and can do a lot more things, being a general-purpose language. Pip is quick once you get rolling with it.
PercussivePaul
Related Q & A:
- What's the knockout equivalent of jQuery.active?Best solution by stackoverflow.com
- Are cursor.size() and cursor.count(true) equivalent?Best solution by stackoverflow.com
- Why is the productivity of the ocean equivalent to that of a desert?Best solution by Yahoo! Answers
- Is there a Canadian equivalent to the Federal Trade Commission?Best solution by answers.yahoo.com
- What is the Australian equivalent of S.W.A.T. called?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.