1

I want to convert icf files to objs, to that effect I want to use this tool:
https://ifcopenshell.org/downloads.html

I installed it through python like this: pip install ifcopenshell

However, I am unable to call any of the utilities the tool claims to have. In particular, I cannot do ifcconvert from the terminal.

I am not sure what I am missing.

2
  • What do you mean "I cannot do ifcconvert from the terminal"? What do you do exactly and what does the computer respond?
    – egmont
    Commented Dec 12, 2023 at 9:21
  • It doesn't show as an available command. There's no auto complete and which does not return anything.
    – Makogan
    Commented Dec 12, 2023 at 17:22

1 Answer 1

0

Download the zip from here. Then extract the binary file from the zip and place it is a directory, say .local/bin . Assure the directory is in PATH. In order to do that open .bashrc file from the home directory. Add the line to end of the file:

export PATH="$HOME/.local/bin:$PATH"

Now open terminal and restart bash: bash --

Now type IfcConvert --help to check it is working.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .