0

I'm working on a ifc file (3D building) and I would like to have it in ifcXML (or any XML format). I tried with IfcOpenShell (IfcConvert) but launching the computer terminal it says Command not found.

I tried this way on the computer terminal:

$ pwd
$ /Users/username/downloads/directory_ifcconvert
$ username:directory_ifcconvert username$ IfcConvert
$ bash: IfcConvert: command not found

Do you have any other way to convert into XML?

Vertexwahn
  • 7,709
  • 6
  • 64
  • 90

1 Answers1

0

Change the permissions of IfcConvert as below;

chmod 755 IfcConvert

and run as below;

./IfcConvert
Mustafa DOGRU
  • 3,994
  • 1
  • 16
  • 24