Questions tagged [pydev]

PyDev is an Eclipse plugin for Python development.

PyDev - one of the best IDEs for Python development. Distributed as an Eclipse plugin.

Detailed information and download available at http://pydev.org/

Related Links:

2553 questions
1
vote
4 answers

PyDev under both Aptana and Eclipse very slow on a particular .py file

This issue just started, last week I had no issues with the particular source file. I'm using SQLAlchemy and Geoalchemy and the particular block of code that triggers Eclipse and Aptana to start pegging the cpu while simply editing the file…
Dan R
  • 11
  • 3
1
vote
1 answer

python interpreter on non-pydev projects?

we have successfully added pydev plugin on our eclipse. as a result in pydev projects it detects errors and so on. but the question is that is there any way that we use pydev abilities (e.g. error detection) in non-pydev projects?(e.g. a java…
Narges
  • 1,345
  • 6
  • 14
  • 29
1
vote
1 answer

Is it possible to run PyDev code analysis from the command line?

I'm trying to run a headless eclipse build but I'm getting stuck. My context is that I want to use the PyDev code analysis without having to fire up the eclipse gui. I am aware of the other command line tools to do code analysis (pyflakes, pylint,…
almostflan
  • 640
  • 4
  • 15
1
vote
1 answer

Intermittent "Page Not Found" when using Django through Pydev

I recently started developing Django using Pydev in Eclipse, along with several other people I know, and I keep losing several hours of productivity a day to this error that I can't seem to debug. Essentially, sometimes after starting up my django…
DivineWolfwood
  • 1,752
  • 12
  • 20
1
vote
1 answer

How to start up Aptana Studio 3 on Mac OSX as root?

I installed Aptana Studio 3 on my Mac Book OS 10.6 as a non-root user. My goal is to develop Python applications with Aptana Studio. Seeing its potential, I decided to use Aptana / Pydev to play around with networking applications. To my dismay I…
1
vote
2 answers

Eclipse randomly replacing tabs with spaces

I'm editing django files in Eclipse Indigo with pydev. Suddenly in one file, eclipse has decided to start using four spaces instead of tabs. The file has a .py extension. It's fine in other files, it's just this one that it's having trouble with.…
TimD
  • 1,371
  • 3
  • 12
  • 20
1
vote
2 answers

Eclipse PyDev Autocomplete Issues

I installed PyDev in Eclipse on my Mac. Whenever I am writing code, it has only a few suggestions and is seemingly incomplete. For example, whenever I type 'r', it only suggests "raise()" and "return()". However, all of the other functions that I…
TheCrzyMan
  • 1,010
  • 1
  • 11
  • 25
1
vote
1 answer

Extending PyDev editor in Eclipse with a side-by-side display for live coding like Bret Victor's demo

I've written a Eclipse plug-in for live coding in Python that adds a display column to the PyDev editor. In that column, it shows how variable values change as the code runs, including multiple columns for loops or repeated function calls. The…
Don Kirkby
  • 53,582
  • 27
  • 205
  • 286
1
vote
2 answers

Eclipse Juno with PyDev deletes my django files

I was trying to set up the Eclipse on a new computer, and thought I might as well try Juno instead of Indigo as I was using before. However, attempting to import my PyDev/Django files was troublesome, and I ended up creating a new Django project and…
Alex
  • 18,332
  • 10
  • 49
  • 53
1
vote
1 answer

Using "TAB" instead "ENTER" for auto completion in PYDEV Eclipse

Is there a way to change the auto complete options? I want to auto complete in pydev if I use TAB key instead ENTER key because it's annoying. Everytime I want to jump to a new line, I hit ENTER and it completes something for me instead of jumping a…
newfylox
  • 21
  • 2
1
vote
1 answer

UnresolvedError on importing package in eclipse

I get an Unresolved Error while importing a package (bigfloat) by import bigfloat in PyDev in eclipse. However on from bigfloat import * the error is resolved. What is the reason behind this? I used easy_install to download and install the bigfloat…
Arjun
  • 1,259
  • 1
  • 13
  • 25
1
vote
1 answer

Get error when coding Python in Eclipse

I was looking for an appropriate Python IDE for a long time. When googling and looking for a desired one in this forum and on the other websites I finally realised Eclipse is being suggested by the majority of the professional programmers. So as you…
Karl Smith
  • 49
  • 5
1
vote
2 answers

Getting application error: 2 in GAE PyDev application when deployed on app engine. Works fine locally

I am getting DownloadError: ApplicationError: 2 (11004, 'getaddrinfo failed') I'm making an API call to an application deployed on Tomcat on my machine and expecting a XML response, but doesn't work. Can someone propose a solution or an alternate…
1
vote
2 answers

Pydev missing after upgrading Eclipse on FreeBSD

I recently updated my ports on my FreeBSD 9.0 release machine and I think eclipse was upgraded due to a port upstream forced Eclipse to be rebuilt. Now Pydev is gone. I tried uninstalling then reinstalling Eclipse, then installing Pydev using…
user352472
  • 551
  • 5
  • 17
1
vote
3 answers

ImportError: cannot import name urandom in Eclipse/PyDev

When I attempt to run the script below in Eclipse(PyDev): import subprocess subprocess.call("/usr/local/bin/mitmdump") An error is returned: Traceback (most recent call last): File "/usr/local/bin/mitmdump", line 19, in from…
1 2 3
99
100