I am new to Python and I want to install VLFeat
on Ubuntu (13.04).
I am using Eclipse 3.8. For Python, I have installed the PyDev
extension on Eclipse.
I have installed Numpy, but I don't know how to install VLFeat. I tried to use their website, but I can't get anything for Python. I have downloaded packages, but I don't know how to install them.
The Menpo Project provides a wrapper around VLFeat: it's called cyvlfeat.
To install cyvlfeat, we strongly suggest you use conda:
conda install -c menlo cyvlfeat
If you don't want to use conda, your mileage will vary. In particular, you must satisfy the linking/compilation requirements for the package, which include the vlfeat dynamic library.
In other words, the nice thing about installing with conda
is that it will install (and link) VLFeat dependencies as well.
It may not include all functionalities of VLFeat. Current State as of March 2017:
Dev blog by Simmi Mourya. This includes descriptions and usage examples.
Installing python packages should be independent of the IDE (Eclipse + PyDev, in the OP case), as long as the interpreter and libraries paths are correctly set up.
It is not required to install the Anaconda distribution in order to use conda
. The much lighter Miniconda is enough.