Questions tagged [liclipse]

LiClipse is a set of plugins to enhance Eclipse and improve the overall Eclipse experience. It includes improved IDE theming, builtin editors for many languages (and a way to easily create new editors without delving into actual Java coding), usability improvements for all Eclipse editors, packaging of some common existing plugins and installers which are natively integrated into each platform.

68 questions
0
votes
1 answer

pylint errors when using liclipse

PyLint: Executing command line: /usr/local/bin/pylint --rcfile=/Users/amansehgal/.rcfile --include-ids=y /Users/amansehgal/Documents/cis519/hw3_skeleton/boostedDT.py PyLint: The stdout of the command line is: PyLint: The stderr of the command line…
marc
  • 797
  • 1
  • 9
  • 26
0
votes
1 answer

Change the fonts in the PyDev Package Explorer

How do I change the fonts used in the LiClipse PyDev Package Explorer? I find them a little bit on the small side.
user1443098
  • 6,487
  • 5
  • 38
  • 67
0
votes
1 answer

pylintrc file not being detected in LiClipse

This is the command that is run by LiCLipse PyLint: Executing command line: /usr/local/bin/pylint --rcfile=.pylintrc /Users/yogibear/google-python-exercises/basic/string2.py This is the option I am using to add a pylint configuration file in…
marc
  • 797
  • 1
  • 9
  • 26
0
votes
1 answer

Django library Unresolved Import LiClipse

I am creating my first Django project from docs.djangoproject.com. After completing tutorial 4, I tried to import my project in LiClipse. But LiClipse is showing error of Unresolved Import however my projects works perfectly fine. I have added…
Jatin Bhola
  • 661
  • 1
  • 6
  • 11
0
votes
1 answer

Number of rows into a HDF5

there's a method for have the number of rows of a .hdf5 without load it in ram ? I'm using Python 3.4 with pydev on Liclipse (WIndows 10) Thanky you
0
votes
1 answer

Python 'unexpected EOF while parsing' eclipse pydev run selected code

If I select the following code and click "Run selected Code" in eclipse, it will give me an error. class abc(object): def __init__(self): print 'base' def run(self): print 'run' Error message: class abc(object): def…
user97662
  • 942
  • 1
  • 10
  • 29
0
votes
1 answer

eclipse pydev interactive debugging

Interactive mode in debugging fails as you try to use "imports" or just use "print 'hello world'". This seems to be a error that only exists until python 3.0 ? Example code: ''' Created on 14. jun. 2016 ''' import time Debugger…
JKN
  • 1
  • 1
0
votes
1 answer

Pydev Spark installation

I am trying to run a Spark program written in python through Lilicpse IDE. Platform is windows 10. I have installed python using Anaconda. Then I have installed Scala. After that I have installed sbt. However when I try to run sbt command from…
0
votes
1 answer

Python : ImportError: No module named requests

I am new to PyDev and Python and trying to run a python program on LiClipse ( version: 2.5.4....) on Windows 7 and seeing this error. This program is importing requests. I am using python 2.7 Did some research on this error and according to the…
VictorGram
  • 2,521
  • 7
  • 48
  • 82
0
votes
1 answer

Are openshift and pydev really full compatible?

I'm just trying to create a "Hello World" django application using Liclipse (licenced) and hosting in openshift. Among all the trouble that I found (import errors, not found in the pythonpath, etc) I note that eclipse seems not to recognize the…
Max Iskram
  • 147
  • 10
0
votes
1 answer

Why is my Eclipse window titled "PyDev - Eclipse (unregistered)"?

After installing the PyDev IDE, my titlebar for Eclipse changed into PyDev - Eclipse (UNREGISTERED) I tried reinstalling LiClipse, Eclipse, the PyDev addon, but Eclipse still appears to be unregistered. Why does Eclipse appear as unregistered?
m3asmi
  • 1,252
  • 1
  • 16
  • 36
0
votes
1 answer

How do I open an existing django project in LiClipse?

Really dumb question, but it's taking me too long to figure out how to open an existing django project "mysite" in LiClipse (mysite wasn't created within LiClipse). I tried import and wasn't seeing anything obvious, I tried creating a new project…
johnmic07
  • 1,225
  • 2
  • 10
  • 14
0
votes
1 answer

LiClipse and virtualenv - LiClipse does not know modules from site-packages

So I just created a new virtual environment and linked it to a project in LiClipse by setting the interpreter as standard interpreter for the project. The only problem is, that packages installed to the site-packages folder by pip don't seem to be…
vicco
  • 1,049
  • 2
  • 14
  • 33
0
votes
1 answer

"Unresolved import: module" when importing a module into LiClipse

I have installed liclipse 2.4 (Python 3.0 grammar) recently and downloaded pycparser-master.zip file, extracted it, and added the pycparser-master/pycparser/ directory under Project->Properties->PyDev-PYTHONPATH->External Libraries. I used the below…
user691197
  • 927
  • 6
  • 20
  • 38
0
votes
0 answers

Numpy.matrix not recognized

New to python; running windows. I am using python27, and ran the following code. It failed, even though it recognized numpy. Then, I made sure that numpy was installed by running pip install numpy. Reran the code and had the same problem: numpy…
Chris
  • 28,822
  • 27
  • 83
  • 158