14

I downloaded http://qt-project.org/downloads

Qt5 Libary for Linux 64bit

The library format is .run

But if I try to open it, I'll get the following error

sh ./qt.run
./qt.run: 1: ./qt.run: cannot open @8: No such file
./qt.run: 1: ./qt.run: ELF: not found
./qt.run: 1: ./qt.run: Syntax error: word unexpected (expecting ")")

and then it produces a garbage file.

RolandiXor
  • 51,091
  • 31
  • 161
  • 256
Maik Klein
  • 1,321
  • 5
  • 18
  • 27

1 Answers1

24

You have to make the file executable and then simply execute it.

Type the following commands in the terminal:

chmod u+x qt.run
./qt.run
bender
  • 1,804
  • 15
  • 24