cjrd / TMA

Topic Model Analyzer
https://github.com/cjrd/TMA/wiki
Other
62 stars 27 forks source link

"No module named generate_db" #11

Closed nealcaren closed 12 years ago

nealcaren commented 12 years ago

After a local installation, which I think was successful, I got the message "No module named generate_db" when I went to "http://localhost:8000/tma." Looking through the "src/backend" folder, I didn't see a "generate_db". When I comment out that line, things seem to work fine.

cjrd commented 12 years ago

generate_db was the original module used to create the analysis database (tma.sqlite) (now this is handled by the individual analyzers). I removed the unneeded import statement from tmanalyzer.py (this was the line you commented out, correct?).

nealcaren commented 12 years ago

Yes, it was the import statement in tmanalyzer.py. Thanks.