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
28
votes
4 answers

pydev doesn't find python library after installation

I'm using Django and PyDev/Eclipse. I just installed django-treebeard with setup.py install and it got installed in my site-packages directory C:\Python26\Lib\site-packages. I can successfully import it in the python shell with import treebeard.…
Raoul Duke
  • 4,241
  • 2
  • 23
  • 18
28
votes
2 answers

What is pyximport and how should I use it?

I am using cython to generate faster code for a mathematical model. I am having a hard time compiling the code, but somehow I managed to do so using a .bat: setlocal EnableDelayedExpansion CALL "C:\Program Files\Microsoft…
guilhermecgs
  • 2,913
  • 11
  • 39
  • 69
27
votes
5 answers

Django templates syntax highlighting in Eclipse

I use Eclipse and pydev for django development. This has worked more or less ok, including debugging. Syntax highlighting doesn't seem to work everywhere though. I couldn't get any highlighting for the templates thought. Is there a way to get the…
abolotnov
  • 4,282
  • 9
  • 56
  • 88
27
votes
2 answers

Skip system checks on Django server in DEBUG mode in Pycharm

I am running django application in Pycharm in DEBUG mode. Each time when i change some code system checks are performed. pydev debugger: process 2354 is connecting Performing system checks... Is there any way to skip system checks/speed up this…
domandinho
  • 1,260
  • 2
  • 16
  • 29
27
votes
4 answers

what's the keyboard shortcut to toggle breakpoint in pydev using eclipse

I think I'm missing the elephant in the room but for the life of me I can't find the keyboard shortcut to setting a breakpoint in eclipse when using the pydev plugin. Things that I've already tried: Ctrl + Shift + B: does nothing. Ctrl + F10:…
Joe
  • 11,147
  • 7
  • 49
  • 60
27
votes
2 answers

Problems when showing Interpreter (IPython) after running Program in PyCharm

I have PyCharm Professional Edition 3.5 5.0 configured to use IPython when possible and in my Run/Debug Configurations I set show interpreter afterwards I use the interactive Interpreter a lot and I really like IPython, but there are some things…
0x539
  • 1,489
  • 1
  • 13
  • 30
25
votes
2 answers

Eclipse Pydev: 'Error: Python stdlib not found'

I am trying to add an interpreter (created using virtualenv) to PyDev but I get the following error: It seems that the Python /Lib folder (which contains the standard library) was not found /selected during the instal process. This folder…
goodolddays
  • 2,595
  • 4
  • 34
  • 51
25
votes
13 answers

PyDev Eclipse Python interpreters Error: stdlib not found

I have been trying to use Eclipse 3.6 as a Python editor. I install the latest version of PyDev, and then try to set the Interpreter - Python field of the preferences, on my mac. My python version is 2.6 and the path is "/usr/bin/python". When I…
labjunky
  • 831
  • 1
  • 13
  • 22
25
votes
5 answers

How to suppress "unused variable" warnings in Eclipse/PyDev

How to suppress "unused variable" warnings in Eclipse/PyDev When I'm working with functions that return tuples, I often only need one of the values, but still want to assign to multiple variables. I would like to be able to temporarily turn this…
Jon Coombs
  • 2,135
  • 2
  • 25
  • 26
25
votes
5 answers

Virtualenv with Eclipse (Galileo)

Does anybody have directions for getting Eclipse (Galileo), PyDev, and Virtualenv working together? I'm specifically trying to run Pinax but any instructions are fine. I thought I had it (and even blogged everything but the final step - interactive…
Adam Nelson
  • 7,932
  • 11
  • 44
  • 64
24
votes
2 answers

Is it possible for Eclipse to terminate gently instead of using SIGKILL?

I'm using Eclipse on Windows, with the PyDev plugin for Python development. When I use 'Run' to start my application, it spawns a new Python (CPython) instance. When I use the 'terminate' button (red square), it kills the process. However, it…
DNS
  • 37,249
  • 18
  • 95
  • 132
24
votes
5 answers

Passing command Line argument to Python script within Eclipse(Pydev)

I am new to Python & Eclipse, and having some difficulties understanding how to pass command line argument to script running within Eclipse(Pydev). The following link explains how to pass command line argument to python script. To pass command line…
newprint
  • 6,936
  • 13
  • 67
  • 109
24
votes
3 answers

Setting up Pylint with PyDev

I have installed pylint via easy_install. I can run pylint with success. But pydev refuses to use it. I checked "use pylint" I configured correct path I updated my python interpreter in eclipse to have pylit in pythonpath I use Eclipse…
Kugel
  • 19,354
  • 16
  • 71
  • 103
24
votes
4 answers

Eclipse Rename - Refactor hotkey inserts registered trademark symbol

Previously, using the ALT+COMMAND+R key combination after highlighting a variable name in a Java file would go into the rename refactor mode. Now, the key combination replaces the highlighted text with a registered trademark symbol. How can I get…
burkemw3
  • 450
  • 3
  • 16
23
votes
5 answers

pydev breakpoints not working

I am working on a project using python 2.7.2, sqlalchemy 0.7, unittest, eclipse 3.7.2 and pydev 2.4. I am setting breakpoints in python files (unit test files), but they are completely ignored (before, at some point, they worked). By now i have…
Lars
  • 1,869
  • 2
  • 14
  • 26