2013-10-08 9 views
0

FreeCAD로 다른 폴더에있는 Python 파일에서 가져 오기를 시도 할 때 약간의 문제가 있습니다. 파이썬 파일 위치 : c:/users/workspace/main.py FreeCAD : c:/program files (x86)/FreeCAD0.13/bin 내가 명령 from FreeCAD import * (나는 sys sys.path.append (" path-To-FreeCADs-BinFolder ") 에 FreeCAD의 경로를 추가하고있어 내가 오류 얻을로 가져올려고캔트 FreeCAD from Python

:

FreeCAD 0.13, Libs: 0.13R1828 
Initialization of FreeCAD failed: 
While initializing FreeCAD the following exception occurred: 
''module' object has no attribute 'PrintError'' 
Please contact the application's support team for more information. " 

을하지만 때 내가 FreeCAD의 폴더에 파이썬 파일을 만듭니다. 내가 위에서 쓴 것처럼 FreeCAD 가져 오기를 의미합니다.

ps : 내 Python 버전은 2.7.5이고 FreeCAD는 0.13

입니다.

답변

3

나는 똑같은 문제가있어서 서핑을하다가 Win 버전이 Python2.7을 지원하지 않는다는 것을 알았 기 때문에 파이썬 2.6을 설치하고 셸을 열고 같은 작업을해야한다. import sys sys.path.append (' C : 가져 오기가 다음 그것은

+0

감사를 작동해야

을 FreeCAD // 프로그램 파일 // FreeCAD0.13/빈 ')는 많은 그것은 나로부터 :) – Alchalade

+0

그리고 감사했다! – interested