Peter, On Thu, Mar 8, 2012 at 3:30 AM, Peter Bochmann <[email protected]> wrote: > Any ideas?
This is the piece of code that might be failing for you (https://sourceforge.net/apps/trac/w3af/browser/trunk/core/ui/gtkUi/dependencyCheck.py) : 42 try: 43 proc = subprocess.Popen('neato -V',shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 44 except: 45 msg = 'You have to install graphviz library. \n' 46 msg += ' - On Debian based distributions: apt-get install graphviz\n' 47 msg += ' - On Mac: sudo port install graphviz' 48 print msg 49 sys.exit( 1 ) 50 else: 51 if 'graphviz' not in proc.stderr.read().lower(): 52 msg = 'You have to install graphviz library. \n' 53 msg += ' - On Debian based distributions: apt-get install graphviz\n' 54 msg += ' - On Mac: sudo port install graphviz' 55 print msg 56 sys.exit( 1 ) So, in other words, why don't you check if you have a neato.exe in your system, and if it is in your PATH. You also might want to open a cmd.exe and run 'neato -V' to see what comes out of that. Regards, > Thanks, Peter > > Am 05.03.2012 19:34 schrieb "Peter Bochmann" <[email protected]>: > > >> >> Hi Andres, >> >> 2012/3/5 Andres Riancho <[email protected]>: >> > Peter, >> > >> > On Sun, Mar 4, 2012 at 7:25 AM, Peter Bochmann <[email protected]> >> > wrote: >> >> Hi all, >> >> >> >> I recently downloaded the w3af distribution with installer (1.0 stable) >> >> and >> >> went through (all?) the installation steps. >> >> >> >> First i ran the installer itself, after this was successfully completed >> >> I >> >> installed the 3 packets from extlib dir (fpconst/SOAPpy/pyPdf). >> >> >> >> Now when i run the w3af_gui.bat it fails with following error: >> >> >> >> === >> >> C:\Programme\w3af>w3af_gui.bat >> >> You have to install graphviz library. >> >> - On Debian based distributions: apt-get install graphviz >> >> - On Mac: sudo port install graphviz >> >> === >> >> >> >> GTK2-runtime and Graphviz are in the GTK subdir of the installation and >> >> PATH >> >> is set to both their bin directories. >> >> >> >> I tried w3af_console.bat and confirmed the SVN update. The installation >> >> should be the latest SVN now but the GUI error is still the same. >> >> Console >> >> seems to be running but I haven't yet tried to work with it. >> >> >> >> From mailing list archives I found some similar problems but was not >> >> able to >> >> solve this issue. >> >> >> >> Is there something I missed during installation? Or anything I can do >> >> to >> >> test and identify the error? >> > >> > In most cases when this happens it is because the library "got >> > installed in the wrong location". Do you have two Python versions? >> > Maybe the library was installed for Py2.7 and w3af is using Py2.6 ! >> >> Python 2.6 was installed by the w3af installer. No other version of >> Python is present on this system. >> >> From older threads in this mailing list I have seen there was a >> additional installer for Graphviz invoked by the w3af installer. I had >> installed, removed and re-installed w3af two times but in no case >> there was a additional installer for Graphviz. Was this removed from >> later versions? >> >> What can i check for to see if Graphviz was properly installed? >> >> Thanks & regards, >> Peter >> >> > >> > Regards, >> > >> >> Thanks & best regards, >> >> >> >> Peter >> >> >> >> >> >> ------------------------------------------------------------------------------ >> >> Virtualization & Cloud Management Using Capacity Planning >> >> Cloud computing makes use of virtualization - but cloud computing >> >> also focuses on allowing computing to be delivered as a service. >> >> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >> >> _______________________________________________ >> >> W3af-users mailing list >> >> [email protected] >> >> https://lists.sourceforge.net/lists/listinfo/w3af-users >> >> >> > >> > >> > >> > -- >> > Andrés Riancho >> > Director of Web Security at Rapid7 LLC >> > Founder at Bonsai Information Security >> > Project Leader at w3af > > > ------------------------------------------------------------------------------ > Virtualization & Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > W3af-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/w3af-users > -- Andrés Riancho Director of Web Security at Rapid7 LLC Founder at Bonsai Information Security Project Leader at w3af ------------------------------------------------------------------------------ Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-dev2 _______________________________________________ W3af-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/w3af-users
