从Windows到Linux的Python代码

时间:2015-06-17 06:40:54

标签: python linux windows

我的文件包含为Windows格式化的代码。当我尝试在linux机器上运行它时,我有文件编码问题。任何人都可以为此建议解决方案

我跑的时候在Windows上运行< - >

This was return from redis
Exception in thread Thread-3:
Traceback (most recent call last):
 File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
 File "/usr/lib/python2.7/threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)
File "/home/bsingh/python_files/lib/Site.py", line 85, in monitor
self.update1()
File "/home/bsingh/python_files/lib/Site.py", line 78, in update1
for entry in new_pastes[::-1]:
TypeError: 'NoneType' object has no attribute '__getitem__'

2 个答案:

答案 0 :(得分:1)

你应该试试 -

dos2unix <filename> 

将在Windows中创建的文件转换为unix格式。 Reference

请注意dos2unix, 不是python代码转换 ,它会将dos字符转换为unix等价物。

答案 1 :(得分:1)

如果您认为这是文件编码的问题。 也许你应该添加

# -*- coding: utf-8 -*-

# coding: utf-8

在任何python脚本文件的头部(第1行或第2行)。