1

重现步骤:

在 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 命令的使用,但我不确定如何重置语言环境?

4

1 回答 1

2

这是 Turicreate 的一个问题。相关问题在此处打开:https ://github.com/apple/turicreate/issues/1862

总结是:在启动时 turicreate 将 LC_ALL 环境变量设置为 C ()

解决方法:

import turicreate as tc
import os
del os.environ['LC_ALL']
于 2019-06-04T17:36:50.050 回答