Wednesday, May 15, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 493  / 3 Years ago, sun, august 22, 2021, 11:42:19

I was trying to run a linux binary from this site:



http://www.robots.ox.ac.uk/~vgg/research/affine/descriptors.html#binaries



specifically, the "compute_descriptors.ln"



However, the terminal only responded with command not found. The extension also looks very uncommon.



I am running Ubuntu 12.10.


More From » 12.10

 Answers
4

You probably typed



$ compute_descriptors.ln


but you need to do



$ ./compute_descriptors.ln


(notice the leading ./, that is also mentioned on the site you linked)

The command isn't known "globally" (in your path) so you must specify that the command is in fact in this directory.



You could also need to do a chmod +x, but i'd just try the ./ prepending first.


[#33734] Monday, August 23, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
beateyra

Total Points: 499
Total Questions: 113
Total Answers: 125

Location: Falkland Islands
Member since Mon, Jul 13, 2020
4 Years ago
;