You haven't installed the libraries properly... you don't install them by simply downloading the .zips, extracting and copying to the Python directory.
If you're wanting to run Pywallet properly with Windows, you need to install the libraries using pip. As per
the pycrypto page on pypi.org, the install command is:
If you didn't let the installer modify your path, you might need to use the full path to the "pip" script:
c:\Python27\Scripts\pip install pycrypto
Once you have pycrypto installed, you can try running PyWallet... looking at your screenshot, you don't appear to be running it correctly. Given that it's not a BTC wallet, you'll definitely need the
--otherversion command... From
the registered coin types, Komodo is 141... so something like:
python pywallet.py --dumpwallet --datadir=x:\FULL\PATH\TO\WALLET\DIR --wallet=walletfilename --otherversion=141 > wallet.txt
Note that Pywallet on windows is VERY particular about the
--datadir... it really needs to be the FULL path to the directory...
--wallet is only required if the file
is not called wallet.dat