MacOS:ValueError: unknown locale: UTF-8

在使用conda安装labelme完成后,打开labelme时出现了这个错误:

通过以下步骤解决这个问题:

vim ~/.bash_profile

在末尾添加下边两行:

export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8

最后再:

source ~/.bash_profile

参考:

Mac OS X: ValueError: unknown locale: UTF-8 in Python (Example)

你可能感兴趣的:(macos,python,conda)