2015年11月05日
Tweet
メモ。
apt-get install curl
上記コマンドを実行すると以下のようなメッセージが。
Reading package lists... Done
Building dependency tree
Reading state information... Done
curl is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
which curl
コマンドを実行すると、ちゃんとパスが表示されました。ってことはインストールされているんですね。
Webブラウザからアクセスし、php を叩くと、エラーログが出力されました。
Call to undefined function curl_init()
このエラーを解消するには、PHPとのライブラリが必要なようです
apt-get install php5-curl
上記コマンドで、PHPから curl を利用するライブラリを導入しエラーが出なくなりました。
apt-get install curl
上記コマンドを実行すると以下のようなメッセージが。
Reading package lists... Done
Building dependency tree
Reading state information... Done
curl is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
which curl
コマンドを実行すると、ちゃんとパスが表示されました。ってことはインストールされているんですね。
Webブラウザからアクセスし、php を叩くと、エラーログが出力されました。
Call to undefined function curl_init()
このエラーを解消するには、PHPとのライブラリが必要なようです
apt-get install php5-curl
上記コマンドで、PHPから curl を利用するライブラリを導入しエラーが出なくなりました。