NotImplementedError: A UTF-8 locale is required. Got ANSI_X3.4-1968

报错原因如标题所示

解决方法

import locale
locale.getpreferredencoding = lambda: “UTF-8”

然后再pip install 你需要的包

你可能感兴趣的:(python,linux,ubuntu)