On 5/6/08, Stephen Tucker <[EMAIL PROTECTED]> wrote:
> I'm a recent (4 days) convert from XP to Mac OS Leopard. What a great
>  system
>
>  I've downloaded latest SQLite3 for Mac but it came as .bin not .dmg.
>  Can someone tell me how to install this? Run from "Terminal"?
>
>  Apol if this is a stupid question
>


Not a stupid question, but a case of mismatched expectations.

Yes, you would run it from the Terminal. It is a command line program
that the purveyors of this fine product have already compiled for you.
After you have extracted the .gz to .bin, chmod it to be executable,
then run it. Here are the steps more graphically --

1. Download
2. Extract
    $ tar xzf sqlite3-3_5_8-osx-x86.bin.gz
3. The .gz file is now .bin. chmod it to be executable
    $ chmod +x sqlite3-3_5_8-osx-x86.bin
4. Now run it
    $ ./sqlite3-3_5_8-osx-x86.bin

Make it easy for yourself. Rename it to something shorter, like, say, sqlite3

--
Puneet Kishor
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to