当前位置: 代码迷 >> 综合 >> linux python错误解决:import: not authorized `xx‘ @ error/constitute.c/WriteImage/1028.
  详细解决方案

linux python错误解决:import: not authorized `xx‘ @ error/constitute.c/WriteImage/1028.

热度:44   发布时间:2024-02-28 04:52:59.0

报错:
今天把windows上写的python代码放到linux下运行,出现了以下错误:

import: not authorized `xx’ @ error/constitute.c/WriteImage/1028.

总之是一个python代码的import的bug。

解决方法:

在python文件最前面加上:

#!/usr/bin/env python3.5

具体路径可以用:where is python查找

  相关解决方案