1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
| $ sudo php -d detect_unicode=0 go-pear.phar
Below is a suggested file layout for your new PEAR installation. To change individual locations, type the number in front of the directory. Type 'all' to change all of them or simply press Enter to accept these locations.
1. Installation base ($prefix) : /usr/local/Cellar/php70/7.0.19_11 2. Temporary directory for processing : /tmp/pear/install 3. Temporary directory for downloads : /tmp/pear/install 4. Binaries directory : /usr/local/Cellar/php70/7.0.19_11/bin 5. PHP code directory ($php_dir) : /usr/local/Cellar/php70/7.0.19_11/share/pear 6. Documentation directory : /usr/local/Cellar/php70/7.0.19_11/docs 7. Data directory : /usr/local/Cellar/php70/7.0.19_11/data 8. User-modifiable configuration files directory : /usr/local/Cellar/php70/7.0.19_11/cfg 9. Public Web Files directory : /usr/local/Cellar/php70/7.0.19_11/www 10. System manual pages directory : /usr/local/Cellar/php70/7.0.19_11/man 11. Tests directory : /usr/local/Cellar/php70/7.0.19_11/tests 12. Name of configuration file : /usr/local/etc/php/7.0/pear.conf
// インストール先指定 1-12, 'all' or Enter to continue: (「1」と入力しEnter)
(Use $prefix as a shortcut for '/usr/local/Cellar/php70/7.0.19_11', etc.) Installation base ($prefix) [/usr/local/Cellar/php70/7.0.19_11] : (「/usr/local/pear」と入力しEnter)
Below is a suggested file layout for your new PEAR installation. To change individual locations, type the number in front of the directory. Type 'all' to change all of them or simply press Enter to accept these locations.
1. Installation base ($prefix) : /usr/local/pear 2. Temporary directory for processing : /tmp/pear/install 3. Temporary directory for downloads : /tmp/pear/install 4. Binaries directory : /usr/local/pear/bin 5. PHP code directory ($php_dir) : /usr/local/pear/share/pear 6. Documentation directory : /usr/local/pear/docs 7. Data directory : /usr/local/pear/data 8. User-modifiable configuration files directory : /usr/local/pear/cfg 9. Public Web Files directory : /usr/local/pear/www 10. System manual pages directory : /usr/local/pear/man 11. Tests directory : /usr/local/pear/tests 12. Name of configuration file : /usr/local/etc/php/7.0/pear.conf
// バイナリディレクトリ指定 1-12, 'all' or Enter to continue: (「4」と入力しEnter)
(Use $prefix as a shortcut for '/usr/local/pear', etc.) Binaries directory [$prefix/bin] : /usr/local/bin
Below is a suggested file layout for your new PEAR installation. To change individual locations, type the number in front of the directory. Type 'all' to change all of them or simply press Enter to accept these locations.
1. Installation base ($prefix) : /usr/local/pear 2. Temporary directory for processing : /tmp/pear/install 3. Temporary directory for downloads : /tmp/pear/install 4. Binaries directory : /usr/local/bin 5. PHP code directory ($php_dir) : /usr/local/pear/share/pear 6. Documentation directory : /usr/local/pear/docs 7. Data directory : /usr/local/pear/data 8. User-modifiable configuration files directory : /usr/local/pear/cfg 9. Public Web Files directory : /usr/local/pear/www 10. System manual pages directory : /usr/local/pear/man 11. Tests directory : /usr/local/pear/tests 12. Name of configuration file : /usr/local/etc/php/7.0/pear.conf
// 以上で基本設定が済んだのでインストールを開始する 1-12, 'all' or Enter to continue: (何も入力せずEnter)
// インストールが開始されます。 Beginning install... Configuration written to /usr/local/etc/php/7.0/pear.conf... Initialized registry... Preparing to install... installing phar:///Users/kenzo.tanaka/azure/go-pear.phar/PEAR/go-pear-tarballs/Archive_Tar-1.4.2.tar... installing phar:///Users/kenzo.tanaka/azure/go-pear.phar/PEAR/go-pear-tarballs/Console_Getopt-1.4.1.tar... installing phar:///Users/kenzo.tanaka/azure/go-pear.phar/PEAR/go-pear-tarballs/PEAR-1.10.4.tar... installing phar:///Users/kenzo.tanaka/azure/go-pear.phar/PEAR/go-pear-tarballs/Structures_Graph-1.1.1.tar... installing phar:///Users/kenzo.tanaka/azure/go-pear.phar/PEAR/go-pear-tarballs/XML_Util-1.4.2.tar... install ok: channel://pear.php.net/Archive_Tar-1.4.2 install ok: channel://pear.php.net/Console_Getopt-1.4.1 install ok: channel://pear.php.net/Structures_Graph-1.1.1 install ok: channel://pear.php.net/XML_Util-1.4.2 install ok: channel://pear.php.net/PEAR-1.10.4 PEAR: Optional feature webinstaller available (PEAR's web-based installer) PEAR: Optional feature gtkinstaller available (PEAR's PHP-GTK-based installer) PEAR: Optional feature gtk2installer available (PEAR's PHP-GTK2-based installer) PEAR: To install optional features use "pear install pear/PEAR#featurename"
The 'pear' command is now at your service at /usr/local/bin/pear
** The 'pear' command is not currently in your PATH, so you need to ** use '/usr/local/bin/pear' until you have added ** '/usr/local/bin' to your PATH environment variable.
Run it without parameters to see the available actions, try 'pear list' to see what packages are installed, or 'pear help' for help.
For more information about PEAR, see:
http://pear.php.net/faq.php http://pear.php.net/manual/
Thanks for using go-pear!
|