Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

installed thrift however when tried to run thrift command it says Thrift: command not found

I have installed thrift in mac.

From the terminal it looks like thrift is installed successfully however when i tried to run thrift command i got the following

Thrift: command not found

I used the whereis command from the terminal to find the location of thrift but couldn't find it.

Any suggestions?

Terminal output after installing thrift thrift 0.9.0

Building C++ Library ......... : yes
Building C (GLib) Library .... : no
Building Java Library ........ : yes
Building C# Library .......... : no
Building Python Library ...... : yes
Building Ruby Library ........ : yes
Building Haskell Library ..... : no
Building Perl Library ........ : yes
Building PHP Library ......... : yes
Building Erlang Library ...... : no
Building Go Library .......... : no
Building D Library ........... : no
like image 505
user1807630 Avatar asked Nov 07 '12 22:11

user1807630


1 Answers

I think you didn't actually install thrift. You have to do followings after ./configure


$ make
$ sudo make install
like image 197
Seongyoon Cho Avatar answered Oct 15 '22 12:10

Seongyoon Cho