diff options
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/ccompiler.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index 14213dc4b..e3b88af08 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -58,7 +58,11 @@ def CCompiler_spawn(self, cmd, display=None): if s: if is_sequence(cmd): cmd = ' '.join(list(cmd)) - print(o) + try: + print(o) + except UnicodeError: + # When installing through pip, `o` can contain non-ascii chars + pass if re.search('Too many open files', o): msg = '\nTry rerunning setup command until build succeeds.' else: |