Stock, On Wed, Apr 17, 2013 at 9:43 AM, [email protected] <[email protected]> wrote: > Hi friends , > > Could you help me with this ? > > Traceback (most recent call last): > File "./w3af_gui", line 109, in <module> > err_code = main() > File "./w3af_gui", line 105, in main > import core.ui.gui.main > File "/pentest/web/w3af/w3af/core/ui/gui/main.py", line 51, in <module> > from core.ui.gui.auto_update.gui_updater import GUIUpdater > File "/pentest/web/w3af/w3af/core/ui/gui/auto_update/gui_updater.py", > line 27, in <module> > from core.controllers.auto_update.version_manager import VersionMgr > File > "/pentest/web/w3af/w3af/core/controllers/auto_update/version_manager.py", line > 26, in <module> > from core.controllers.auto_update.git_client import GitClient, > GitClientError > File > "/pentest/web/w3af/w3af/core/controllers/auto_update/git_client.py", > line 24, in <module> > from git.util import RemoteProgress > ImportError: No module named util
Looks like there are two different git modules in python, one, which is the one that w3af requires, and the other one: the one you have installed. It seems that our dependency check is just verifying that the "git" module is installed but it's not checking which. With this [0] new code I think you should be fine. Run these commands: git pull ./w3af_console <error telling you to install the GitPython package> <install package using recommended command> ./w3af_console <works!> Regards, [0] https://github.com/andresriancho/w3af/commit/e10f377b34ca9e30b54fc4e32648f60ba9846854#core > how can i fix this ? > > best regards > > > Robert > > ------------------------------------------------------------------------------ > Precog is a next-generation analytics platform capable of advanced > analytics on semi-structured data. The platform includes APIs for building > apps and a phenomenal toolset for data science. Developers can use > our toolset for easy data analysis & visualization. Get a free account! > http://www2.precog.com/precogplatform/slashdotnewsletter > _______________________________________________ > W3af-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/w3af-users -- Andrés Riancho Project Leader at w3af - http://w3af.org/ Web Application Attack and Audit Framework Twitter: @w3af GPG: 0x93C344F3 ------------------------------------------------------------------------------ Precog is a next-generation analytics platform capable of advanced analytics on semi-structured data. The platform includes APIs for building apps and a phenomenal toolset for data science. Developers can use our toolset for easy data analysis & visualization. Get a free account! http://www2.precog.com/precogplatform/slashdotnewsletter _______________________________________________ W3af-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/w3af-users
