pythonmoduleinstallationgfx

How to use gfx module in python


I'm trying to use the gfx module for python (from here: http://www.swftools.org/gfx_tutorial.html). But when I do python setup.py build I get an error:

ImportError: cannot import name CompileError

I just need to open a gfx file.. (Its part of the pythonchallenge.com) How can I do it?

I'm working on linux mint 64bit


Solution

  • download

    http://www.swftools.org/download.html
    

    You can build the Python module using setup.py
    You can build it "manually" by using make To do the former, all that should be required is

    python setup.py build
    python setup.py install
    

    This is the preferred way. If the above gives you any trouble or you prefer make, the following will also create the Python module:

    ./configure
    make
    # substitute the following path with your correct python 
    installation:
    cp lib/python/*.so /usr/lib/python2.4/site-packages/
    

    You can test whether the python module was properly installed by doing

    python -c 'import gfx'