用pandas的pd.read_excel()打开中文名的xlsx,报错,本来以为是xlrd的问题后来发现,是open()函数就报错: “UnicodeEncodeError: 'ascii' codec can't encode characters in position 26-30: ordinal not in range(128)” 但是同样的xlsx在win7下用pd.read_excel()打开正常 用print(locale.getdefaultlocale()) 检查一下编码:…
操作系统: Red Hat Enterprise Linux 6.3 x86 安装中文语言支持: yum install "@chinese support" 安装完中文支持后,可以在System->Preference->Input Method设置输入法属性. *如果yum无法使用,可重新安装yum并配置yum源: @http://graybull.is-programmer.com/posts/37702.html Redhat Enterprise Linux 6.…
官方Tomcat镜像 地址:https://hub.docker.com/_/tomcat/ 镜像的Full Description中,我们可以得到许多信息,这里简单介绍下: Supported tags and respective Dockerfile links 支持的标签,以及对应的Dockerfile链接.一个Dockerfile可以对应多个标签,我们将以8.5.16-jre8版本的Dockerfile进行分析. How to use this image 如何使用本镜像,包括了以不同…
Go官方包函数中文翻译 *** import "strings" func Join(a []string, sep string) string Join concatenates the elements of a to create a single string. The separator string sep is placed between elements in the resulting string. 翻译: 根据切片a中的元素生成一个字符串, sep分割字符串被…