重现步骤:
在 GPU 上打开新的 Colab 笔记本
!ls #works
!pip install -q turicreate
import turicreate as tc
!ls #doesn't work
我收到以下错误:
---------------------------------------------------------------------------
NotImplementedError Traceback (most recent call last)
<ipython-input-22-16fdbe588ee8> in <module>()
----> 1 get_ipython().system('ls')
2 # !nvcc --version
2 frames
/usr/local/lib/python3.6/dist-packages/google/colab/_system_commands.py in _run_command(cmd, clear_streamed_output)
165 if locale_encoding != _ENCODING:
166 raise NotImplementedError(
--> 167 'A UTF-8 locale is required. Got {}'.format(locale_encoding))
168
169 parent_pty, child_pty = pty.openpty()
NotImplementedError: A UTF-8 locale is required. Got ANSI_X3.4-1968
不幸的是,这对我来说毫无意义,为什么会发生这种情况。有什么线索吗?我还将在 turicreate 项目中作为潜在问题发布。
编辑:
正如评论中所建议的那样,它看起来确实覆盖了我的语言环境。在导入之前我可以做:
import locale
locale.getdefaultlocale()
(en_US, UTF-8)
但是在我得到之后:
locale.getdefaultlocale()
(None, None)
虽然现在我已经失去了对 shell 命令的使用,但我不确定如何重置语言环境?