PyDev is an Eclipse plugin for Python development.
1
vote
0answers
16 views
Python curses Redirection is not supported
I am trying to use Curses in PyDev in Eclipse in Win7.
I have installed Python 3.2 (64bit) and curses-2.2.win-amd64-py3.2. When I input the following testing codes into PyDev:
import curses
...
0
votes
0answers
11 views
A way to warn against unused global variable
do you know a way to warn against unused global (module) variable(s) in Pydev?
I know they might look as unused, but be accessible from other modules, but for the sake of my code I would like to ...
0
votes
0answers
20 views
How to cancel tip in eclipse pydev?
I use eclipse and pydev, I have canceled the tips by using
perferences-general-editors-text editor-annotation: error, spelling errors and warning
perferences-pydev-editor: hover, and code ...
0
votes
1answer
16 views
PyDev dont autocomplete variables docstring based
I'm using Eclipse 3.8 with PyDev (lastest in update channel), the doctring is generate but pyDev dont use it
def reporthook(self, count, blockSize, totalSize):
'''
Comment Example
:param ...
0
votes
1answer
11 views
PyDev program output in debug console
Please bear with me if this is very basic, as I'm quite new to PyDev. Is there some way to redirect the program output to a PyDev debug console? I'm referring to something like in Matlab. As of now, I ...
0
votes
0answers
11 views
Eclipse PyDev is throwing false errors
I updated PyDev (Eclipse) yesterday and now it is telling me that None, name and other reserved words/builtin functions are invalid, but the script runs just fine. I have read on this forum that the ...
-2
votes
0answers
18 views
how to create forms in eclipse
I wanted to know how I can create forms in eclipse using python. I have installed python with pydev but not sure how to do form designing . Any help will be appreciated.
Hopes for suggestion
0
votes
1answer
12 views
Python NLTK snowball stemmer UnicodeDecodeError in terminal but not Eclipse PyDev
I'm using the snowball stemmer to stem words in documents as shown in below code snippet.
stemmer = EnglishStemmer()
# Stem, lowercase, substitute all punctuations, remove stopwords.
...
0
votes
1answer
10 views
how do you install pexpect on Eclipse with the pydev plugin?
I opened cmd and typed in 'pip install pexpect' and I have confirmation that it installed. However when I use eclipse, it does not recognize pexpect. Help would be greatly appreciated.
0
votes
1answer
16 views
PyDev can't see class from PyTables
I've installed pytables under windows 7 64 bit and it passes all the tests. Both python from command prompt and IDLE can successfully see the StringCol class, and even the python console in Eclipse ...
0
votes
1answer
29 views
Python - modifying CSV Files from file path in text file
I am trying to write a simple python program (in Eclipse Juno using Pydev) to load multiple .CSV files to be copied and re-outputted via CSV. (eventually the "copy" feature will be replaced with ...
0
votes
0answers
17 views
How to debug QThread in eclipse
I've seen Debugger, and know the basic of debugging,but I don't know how to see the processing of variable in QtCore.QThread.
For example, I want to see the value of self.need in WorkerThread, I try ...
0
votes
0answers
17 views
Interacting with mlab scene while it is being drawn
I am trying to interact with the mayavi mlab scene while it is being drawn.
This is the code after I try to implement the answer in How to interact with mayavi window while animating particles? ...
2
votes
1answer
29 views
Variables viewer on Eclipse debugging evaluates Python property automatically
When I new some instance, its __ init __ will do, e.g.
self._regex = value
self._regex_dict = {}
In the Eclipse/PyDev debugger's variables view,self._regex_dict is not equal to empty but has one ...
1
vote
2answers
31 views
python 3.0 readline() random jump
I am reading a txt file line by line using python 3 built-in readline() function. This file contains employees information in blocks and it looks like this:
First name Jack \n
Last name Garcia ...
0
votes
1answer
29 views
PyDev improperly warns of unused import statement
I've got the following Python code in a module:
import ldap
import ldap.sasl
x = ldap.VERSION3
y = ldap.sasl.gssapi
Eclipse (with PyDev) warns me that my first import statement is unused. But it's ...
0
votes
0answers
8 views
PyDev Remote Debugger and Tab Completion in Eclipse
This might be a limitation of the PyDev debugger but would anyone know how to enable tab completion and history like in a plain Python shell in the Eclipse debug Console window?
Pressing tab or the ...
0
votes
0answers
11 views
PyDev comment indentation behaviour
Problem: In PyDev (multiline) comments (Ctrl+/) always prepend the comment character # on the beginning of the line. This behaviour might not be preferred for the user (at least for me it is not). The ...
0
votes
0answers
4 views
Prevent PyDev from automatically adding its config to my projects
I installed PyDev so that I can edit my Python files in Eclipse with syntax highlighting. The projects are all C++ projects that use scons for building.
Now, whenever I add a Python file to any ...
0
votes
2answers
36 views
PyDev change background colour of tooltips
I'm using PyDev in Eclipse (on Ubuntu 12.04). The default background colour for the tooltips is black. Given some of the text in the tooltips (links to function definitions) is dark blue, I can't ...
0
votes
1answer
15 views
Pydev indentation warning in pydev of elipse puglin
I am using PyDev perspective. I get a "bad indentation" warning in python files.
i just copy code from somewehre else, i cannot make sure how much space others use.... so how to automatically format ...
0
votes
0answers
13 views
How can I undo a package rename in Pydev for Eclipse, or fix the import errors the rename caused?
The package was originally titled 'default', but I tried to change the name to 'Synthesizer'. However, this caused a problem because 'Synthesizer' was the name of a class in the package, so I changed ...
0
votes
1answer
27 views
Pydev; How Do I Config *all* .py To NOT Run In Ant?
Beginner config question here, guys.
So I am in eclipse, in pydev. Some of my src will run in the python compiler just fine, but others try and run in ant. When I click the 'Run' dropdown in the ones ...
0
votes
1answer
32 views
Eclipse+Pydev shows different result than Spyder for list of Python modules
I am using Python(x,y) 2.7. I write code either in Spyder or using Eclipse+Pydev.
When I am trying to getting list of Python modules, Spyder IDE is giving different result than Eclipse+Pydev. Code is ...
1
vote
1answer
30 views
PyDev paste to console with blank lines
I use PyDev in Eclipse to write Python code. I make heavy use of the interactive shell--it's the main reason I use Python. But I run into "unexpected indent" errors when I try to paste code with ...
0
votes
0answers
13 views
How do I debug single unit test with pydev?
When using pydev, ctrl+f9 opens a convenient window that lets me choose which unit test to run in the current file. Is there a debug version of the same functionality?
0
votes
2answers
32 views
Remember variables after code execution
Is it possible to run python code in Eclipse (PyDev) and use variables computed in previously executed code (similar to using console and interpret code in real time as we enter it)?
Details: I want ...
0
votes
1answer
83 views
Sqlalchemy attribute error- Eclipse
I am trying this in my PyDev setup on eclipse:
from sqlalchemy.engine import create_engine
This gives me following error:
Traceback (most recent call last):
File ...
0
votes
1answer
54 views
“Unused wild import”: Why?
Whenever I import from another module using an asterisk (from import *) I am fined with an "unused wild import"-warning. It appears as if this is not the right way to do the import, but why does that ...
0
votes
0answers
45 views
Installing kivy with pydev on a mac
I am totally dead in the water right now. I'm trying to install kivy in pydev (eclipse) on a mac. I cannot get pydev to recognize kivy (I'm getting an import error - 'No module named kivy'. I've spent ...
0
votes
0answers
11 views
How my eclipse + pydev could recognize the functions in my project
I develop a python project.
When I try to import some functions in other python files of the same project, pylint will report can not unsolved import
from forder1.file1 import myfunction
do you ...
0
votes
0answers
35 views
Choosing Python3.3 interpreter in Eclipse problems
I am new to Eclipse & PyDev (on Ubuntu 13.04) and want to try Python3.3 programming.
But I cannot choose python3.3 iterpreter, - I try to choose it in usr\lib\python3.3 , but:
- when I try to ...
0
votes
1answer
81 views
Using Python3 with Pymongo in Eclipse Pydev on Ubuntu
I am currently trying to run Pydev with Pymongo on an Python3.3 Interpreter.
My problem is, I am not able to get it working :-/
First of all I installed Eclipse with Pydev.
Afterwards I tried ...
0
votes
1answer
35 views
How to pass a program argument via run configuration in Eclipse
I am running a Python program and I want to pipe the output to file. So in python this command is
"python myfile.py > output.txt"
I'm running the program via pydev in Eclipse, how can I pass ...
0
votes
2answers
36 views
Accesing Python code (project) with two different machines
First of all I am relatively new in Python and maybe missing something about setting up a project in PyDev. I use PyDev with eclipse and windows OS.
I am trying to work on the same project with two ...
1
vote
0answers
26 views
How to make pydev show doc for built-in python functions?
Now for built-in functions, pydev just shows:
list.append Found at: builtins
while for a function in matplotlib, it shows:
def figure Found at: matplotlib.pyplot
def figure(num= # autoincrement ...
0
votes
0answers
15 views
Can't verify pydev 2.7.3 installed into Eclilpse Juno Service Release 2 (4.2)
I've just installed Eclipse Juno Service Release 2 on my Mac (10.7.5 up-to-date). The Eclipse install went fine. It included the C/C++ IDE (1.5.2...).
Then I wanted to install PyDev and so followed ...
0
votes
2answers
63 views
SyntaxError: unexpected EOF while parsing
I have no idea why this does not work please help
import random
x = 0
z = input('?')
int(z)
def main():
while x < z:
n1 = random.randrange(1,3)
n2 = random.randrange(1,3)
...
0
votes
1answer
138 views
How to add oauth2 package to Eclipse pydev?
I'm attempting to install the oauth2 package from https://pypi.python.org/pypi/oauth2/
This file is (oauth2-1.5.211.tar.gz) .tar.gz format but to add a new library to pydev I need to a .zip or .egg ...
0
votes
1answer
42 views
How do I install python's httplib2 on a mac?
OS: Mac OSx 10.8.3
IDE: Eclipse w/ PyDev
How do I properly install httplib2 on a Mac? It can be done on Ubuntu, Debian, Gentoo, and FreeBSD via the command posted below except Mac OS.
Apparently ...
2
votes
1answer
54 views
newbie Django select menu 'function' object is not iterable
when i acess to my url i only get: <django.forms.fields.ChoiceField object at 0x026D1CD0>
i want the number Choicefield
i have the folowing models.py in my app:
from django.db import models
...
0
votes
1answer
61 views
Using python(x,y) with Eclipse IDE
I've installed Python(x,y)-2.7.3.1, looking to use it with Eclipse.
Apparently, Eclipse doesn't come inside it anymore, so I have installed Eclipse Classic 4.2.2.
How do I use em' together?
I guess ...
0
votes
1answer
41 views
Problems with PyDev & Eclipse Juno on osX10.8
I have had this problems for a couple of times but usually could solve it by an update. However, this fix does not work for me anymore.
Actually, two problems here:
The minor one: I have osX 10.8.3 ...
-1
votes
1answer
46 views
Associate a existing Django project to GIT repository [closed]
I have a existing project that is developed in Pydev. I have installed the GIT plugin and created a repository..
Now when I right click the project and check the Team item, I don't see any menu item ...
1
vote
0answers
43 views
Delete source folder in PyDev project generates error “Source folder not found”
When deleting a source folder in a PyDev project in the Project Explorer, the project PYTHONPATH is not updated and there is a red x marking in the outline with an error message saying "Source folder: ...
2
votes
0answers
136 views
Unable to debug dev_appserver in Google App Engine
I don't think this issue is unique to PyDev, but to any python debugger.
Using Eclipse and pydev, I'm unable to break on my WSGI handler, in a dev_appserver (The Google app engine development server) ...
0
votes
1answer
54 views
issue with vtk python wrapping: can't import vtk in interpreter but can import in console
I compiled vtk with python wrapping and I can us it on the command line.
However, I am using eclipse IDE and want to use vtk but no matter what I do with my PYTHONPATH variable, I still get the ...
4
votes
1answer
55 views
Is there a way to suppress unresolved imports in eclipse in a PyDev project?
I have a Python project in eclipse, which imports modules that can't be found by Python. Here's a list of some of the cases:
some of the files might import both the 2.x and 3.x versions of some ...
0
votes
1answer
46 views
Why is QtGui.QApplication working but marked as undefined in PyDev?
In my Python 2.7.3 application, using PySide 1.1.2 and Qt 4.8.4, I do the following:
from PySide import QtGui
app = QtGui.QApplication(sys.argv)
The code is working fine, with some more commands ...
0
votes
1answer
37 views
Executing subprocess.Popen inside Python script in PyDev context is different than running in terminal
I'm executing this code:
p = subprocess.Popen(['/path/to/my/script.sh','--flag'] , stdin=subprocess.PIPE)
p.communicate(input='Y')
p.wait()
It works when executing it on the shell using "python ...