i18n 模块无法导入

百度到的:I'm trying to

 from pygal.i18 import COUNTRIES

but all I get is

ImportError:No module named'pygal.i18n'.



The i18n module was removed in pygal-2.0.0, however, it can now be found in thepygal_maps_world plugin.

You can install that with pip install pygal_maps_world. Then you can accessCOUNTRIES aspygal.maps.world.COUNTRIES:

from pygal.maps.world import COUNTRIES

Whats left of the i18n module can be imported with:

from pygal_maps_world import i18n

pygal-2.0.0 中移除了i18n,要用pip install pygal_maps_world安装模块,用

用pygal.maps.world import COUNTRIES

或者

pygal_maps_world import i18n可以导入

你可能感兴趣的:(i18n 模块无法导入)