How do I get the Python libraries for using the Freebase API to work under IronPython 2.0?
When I ‘import freebase.api’, I get ‘ImportError: No module named django.utils’. What gives?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’re missing the simplejson module. Since easy_install doesn’t yet work with IronPython, your best bet is to grab the latest code using SVN from their Google Code project, or download a zip file.
Put all of the files that you obtained into the lib/site-packages/simplejson folder under your IronPython installation directory.
Now you’ll be able to successfully ‘import freebase.api’.