Changes between Initial Version and Version 1 of Ticket #50717
- Timestamp:
- Feb 25, 2016, 9:37:09 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #50717 – Description
initial v1 2 2 3 3 Here the traceback: 4 ``` 4 {{{ 5 5 >>> import matplotlib 6 6 Traceback (most recent call last): … … 24 24 ValueError: unknown locale: UTF-8 25 25 >>> 26 ``` 26 }}} 27 27 28 The strange thing here is that the locale looks reasonable, the same version just import fine on other OS X versions. Alsodowngrade to an earlier version (`py27-matplotlib @1.4.3_0+cairo+tkinter`), the import just works fine and the problem is gone.28 The strange thing here is that the locale looks reasonable, the same version just importa fine on other OS X versions. Also after downgrade to an earlier version (`py27-matplotlib @1.4.3_0+cairo+tkinter`), the import just works fine and the problem is gone. 29 29 30 30 31 31 The locale looks reasonable: 32 32 33 ``` 33 {{{ 34 34 >>> import locale 35 35 >>> locale.getpreferredencoding() 36 36 'UTF-8' 37 ``` 37 ))) 38 38 39 39 Any idea what's going on here?