http://rikanet.com/2008/09/11/pear/
上のサイトを参考にインストールを行いました。
$ curl http://pear.php.net/go-pear > go-pear.php
$ sudo php -q go-pear.php
1. Installation prefix ($prefix) : /usr/share/pear
2. Temporary files directory : $prefix/temp
3. Binaries directory : $prefix/bin
4. PHP code directory ($php_dir) : $prefix/php
5. Documentation base directory : $php_dir/docs
6. Data base directory : $php_dir/data
7. Tests base directory : $php_dir/tests
The following PEAR packages are bundled with PHP: PEAR_Frontend_Web-beta,
PEAR_Frontend_Gtk2, MDB2.
Would you like to install these as well? [Y/n] : Y
そして、
pear list を行うと -bash: pear: command not found となります。
ちなみに、.bashrcに
export PATH=/opt/local/bin:/opt/local/sbin/:/usr/share/pear/bin:$PATH
と記述し、ホームに置きました。←ここが間違っていると思います。
OSはleopardです。ちなみに、GDのインストールはできました。
mac初心者です。よろしくお願いします。
.bashrc ではなく、ホームディレクトリの .bash_profile に PATH を書くべきです。
どうしても .bashrc に書く必要があるのでしたら、「シェル変数を設定してターミナルの振る舞いを変える」を参考に .bash_profile を書き換えてみてください。
ありがとうございます。