在Python中:' import sitecustomize'失败;

时间:2015-03-31 18:10:44

标签: python numpy

我只是不明白为什么我的代码会生成错误消息:

  

' import sitecustomize'失败

以下是代码:

from numpy import *
from pycalfem import *
from pycalfem_utils import *
def createInput():
edof=array([[1,2,3,4,5,6],
            [1,2,7,8,3,4],
            [3,4,7,8,9,10],
            [7,8,11,12,9,10]])
dof=array([[1,2],
          [5,6],
          [7,8],
          [3,4],
          [11,12],
          [9,10]])
Coord=array([[0,0],
             [0,0.1],
             [0.1,0],
             [0.1,0.1],
             [0.2,0],
             [0.2,0.1]])
bc=array([[1,0],[2,0],[4,0],[5,0]])
ex,ey=coordxtr(edof,Coord,dof)
return ex,ey,bc,edof

if __name__=="main":
print("Hej")
ex,ey,bc,edof=createInput()

1 个答案:

答案 0 :(得分:0)

尝试

python -v

将告诉您为什么sitecustomize无法导入。