im trying to use unicodecsv in my python GAE application but I got the error "ImportError: No module named unicodecsv". So, I guess needs to be installed. How can I install it?
I am new to this, so please bear with me before downvoting.
im trying to use unicodecsv in my python GAE application but I got the error "ImportError: No module named unicodecsv". So, I guess needs to be installed. How can I install it?
I am new to this, so please bear with me before downvoting.
you need to include the module in your application code.
download the module and put it into your app folder.
Ok, I found a complete explanation for the solution here: How to import modules in Google App Engine?
But I didn't need that "import fix_path" thing. Worked fine without that.