Fixed install
diff --git a/erpnext/accounts/doctype/chart_of_accounts/import_charts.py b/erpnext/accounts/doctype/chart_of_accounts/import_charts.py
index c804955..f95a4ed 100644
--- a/erpnext/accounts/doctype/chart_of_accounts/import_charts.py
+++ b/erpnext/accounts/doctype/chart_of_accounts/import_charts.py
@@ -19,8 +19,8 @@
 						"source_file": fname,
 						"country": country
 					}).insert()
-					print bean.doc.name
+					print bean.doc.name.encode("utf-8")
 				else:
-					print "No chart for: " + chart.get("name")
+					print "No chart for: " + chart.get("name").encode("utf-8")
 				
 	frappe.db.commit()
\ No newline at end of file