`

[转] (Ubuntu) Install PHP Composer

阅读更多

 

Step 1:

 

(The recommended path, not needed.)

 

$ cd /usr/local/bin

 

Step 2:

 

(install)

$ sudo curl -s https://getcomposer.org/installer | sudo php
 

Step 3:

(Add execute permissions.)

$ sudo chmod a+x composer.phar

$ alias composer='/usr/local/bin/composer.phar'
 

Step 4:

 

(This step is not necessary. If needed, you can use this script to update Composer.)

$ sudo composer.phar self-update
 

Step 5: 检测 composer 是否安装成功,运行如下命令:

$ composer -V

 

原文网址:http://my.oschina.net/lujian863/blog/161746

 

 

HomeGetting StartedDownloadDocumentationBrowse Packages

Download Composer

Run this in your terminal to get the latest Composer version:

$ curl -sS https://getcomposer.org/installer | php
 

Or if you don't have curl:

$ php -r "readfile('https://getcomposer.org/installer');" | php
 

This installer script will simply check some php.ini settings, warn you if they are set incorrectly, and then download the latest composer.phar in the current directory

Installer Options

--install-dir

You can install composer to a specific directory by using the --install-dir option and providing a target directory. Options must be appended to -- so that PHP ignores them, like -- --install-dir=bin, example:

$ curl -sS https://getcomposer.org/installer | php -- --install-dir=bin
 

--filename

You can specify the filename (default: composer.phar) using the --filename option. example:

$ curl -sS https://getcomposer.org/installer | php -- --filename=composer
 

--version

You can install composer to a specific release by using the --version option and providing a target release. example:

$ curl -sS https://getcomposer.org/installer | php --version=1.0.0-alpha8
 

Manual Download

If you prefer to download the phar manually, here are the available versions:

 

https://getcomposer.org/download/

 

升级 composer

 

gao@gao-VirtualBox:/var/log/nginx$ /usr/local/bin/composer.phar -V
Warning: This development build of composer is over 30 days old. It is recommended to update it by running "/usr/local/bin/composer.phar self-update" to get the latest version.
Composer version b63634396bb181845b4ec3cfe5df0cd2819453ad 2013-12-16 14:34:19
gao@gao-VirtualBox:/var/log/nginx$ /usr/local/bin/composer.phar self-update


                                                                                                                        
  [Composer\Downloader\FilesystemException]                                                                             
  Filesystem exception:                                                                                                 
  Composer update failed: the "/home/gao/.composer/cache" directory used to download the temp file could not be written

 

sudo /usr/local/bin/composer.phar self-update

 

 

更新 已有的laravel 项目

gao@gao-VirtualBox:/var/www$ /usr/local/bin/composer.phar create-project laravel/laravel laravelAuth --prefer-dist


                                                                                                                                  
  [ErrorException]                                                                                                                
  file_put_contents(/home/gao/.composer/cache/repo/https---packagist.org/packages.json): failed to open stream: Permission denied 
                                                                                                                                  


create-project [-s|--stability="..."] [--prefer-source] [--prefer-dist] [--repository-url="..."] [--dev] [--no-dev] [--no-plugins] [--no-custom-installers] [--no-scripts] [--no-progress] [--keep-vcs] [--no-install] [package] [directory] [version]

 

Failed to decode response: zlib_decode(): data error
Retrying with degraded mode, check https://getcomposer.org/doc/articles/troubleshooting.md#degraded-mode for more info

  [ErrorException]          
  zlib_decode(): data error 

解决方法:

composer爆错:zlib_decode():data error

先运行

composer diagnose

若全部返回OK

 

再执行

composer install -vvv

一般就行

gao@gao-VirtualBox:~$ sudo composer diagnose
[sudo] password for gao:
Checking platform settings: OK
Checking git settings: OK
Checking http connectivity to packagist: OK
Checking https connectivity to packagist: OK
Checking github.com rate limit: OK
Checking disk free space: OK
Checking composer version: OK
gao@gao-VirtualBox:~$

 

有时候有提示秘药错误的,去Git上生成一个即可

参考网址:http://www.07net01.com/2015/08/894255.html

本文出自 “枷罗博客” 博客,请务必保留此出处http://jhomephper.blog.51cto.com/8558055/1681854

 

 

gao@gao-VirtualBox:~$ sudo apt-get install php5-mcrypt
[sudo] password for gao:
正在读取软件包列表... 完成
正在分析软件包的依赖关系树      
正在读取状态信息... 完成      
有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是
因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件
包尚未被创建或是它们已被从新到(Incoming)目录移出。
下列信息可能会对解决问题有所帮助:

下列软件包有未满足的依赖关系:
 php5-mcrypt : 依赖: phpapi-20121212
               依赖: php5-common (= 5.5.29+dfsg-1+deb.sury.org~vivid+3) 但是 5.6.4+dfsg-4ubuntu6.2 正要被安装
E: 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系。

分享到:
评论

相关推荐

    opencc-php:用PHP制作的OpenCC

    ubuntu apt install opencc CentOs yum install opencc 视窗x32 视窗x64 OpenCCPHP 使用Composer安装 composer require alaphasnow/opencc-php 应用配置 Laravel应用 (Laravel5.5 +忽略)在config/app.php注册...

    linux php支持mongodb文件

    curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer # 使用Composer安装MongoDB PHP驱动 composer require mongodb/mongodb ``` 如果你无法使用...

    chef-composer:厨师的食谱从 http 安装 PHP Composer

    安装 Composer 并运行 ./composer.phar install composer "/var/www/mysite" do action [:deploy, :install] end 许可证和作者 作者:: Geoffrey Tran ( ) 版权所有:: 2012, Geoffrey Tran 根据 Apache 许可,...

    PHP安装教程

    1. **安装PHP-FPM**: 在Ubuntu中,使用`sudo apt install php-fpm`,在macOS中,使用`brew install php`时会默认安装。 2. **配置PHP-FPM**: 修改`/etc/php/版本号/fpm/pool.d/www.conf`,设置监听端口、用户和组等...

    environmente-dev-php-ubuntu:对PHP进行环境配置的配置

    curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer ``` 确保Composer全局可执行后,你就可以在项目目录下管理依赖了。 Apache虽然未在标题中明确提及,...

    phpenv:简单PHP版本管理

    - 对于Ubuntu/Debian用户:`sudo apt-get install git` - 对于macOS用户:通过Homebrew安装:`brew install git` 2. 克隆phpenv仓库: `git clone https://github.com/phpenv/phpenv.git ~/.phpenv` 3. 添加...

    aliyun-oss-php-sdk:适用于PHP的Aliyun OSS SDK

    在Ubuntu中,您可以使用apt-get软件包管理器来安装PHP cURL扩展名: sudo apt-get install php5-curl 。 安装OSS PHP SDK 如果使用作曲家来管理项目依赖项,请在项目的根目录中运行以下命令: composer require ...

    Laravel开发-valet-ubuntu

    sudo apt-get install -y php-cli php-fpm php-mbstring php-xml php-curl php-zip php-gd composer git ``` 2. 安装Dnsmasq: ```bash sudo apt-get install -y dnsmasq ``` 3. 设置Dnsmasq解析: ```bash ...

    Larascale:适用于Ubuntu 16.04(14.04)(Nginx,PHP7-PHP7.1,Memcached,PostgreSQL或Percona XtraDB Server,Composer,Laravel 5.2-5.4)的简单且高性能的Laravel 5.8安装软件包(shell脚本)

    警告! 大更新即将推出... 请不要在Ubuntu 18.04上使用此版本。... PHP7.1 +内存缓存+ PostgreSQL 9.6 => install-php7_1-postgresql.sh 包括: Nginx的 PHP 7(PHP-FPM)或PHP 7.1 Memcached服务器 Perc

    php-binance-api:PHP Binance API是Binance API的异步PHP库,旨在易于使用。 https:github.combinance-exchangephp-binance-api

    希望帮助:该库已正式弃用,并且仅由社区积极维护,请使用获得全面支持。 欢迎提出请求。 PHP Binance API 该项目旨在帮助您制作与交互的自己的项目。 您可以流化烛台图表数据... sudo apt-get install curl php-curl

    websocket-server:用PHP编写的简单Websocket服务器

    克隆此仓库并使用Composer安装所有依赖项: composer install现在,您需要将现有的.env.example文件复制到.env文件。 打开它,并根据需要更改默认的PORT变量。 此端口必须添加到Web服务器上防火墙的例外列表中。 ...

    install-magento2-ubuntu

    在ubuntu上安装magento2 Magento 2要求PHP> = 7.2,例如php-fpm,... 作曲者1.xx MySQL 5.7 弹性搜索Nginx的Redis(可选)更新ubuntu sudo apt更新安装PHP 7.2 sudo apt install ...o composer.phar ...

    PHP邮件发送类PHPMailer用法实例详解__2.docx

    - 在Ubuntu系统中,可以通过运行命令`sudo apt-get install sendmail`来安装Sendmail。 - 安装完成后,启动Sendmail服务:`sudo /etc/init.d/sendmail start`。 2. **配置PHP.ini**: - 打开`php.ini`文件,在`...

    PHP语言教程与实战案例详解.docx

    sudo apt-get install php libapache2-mod-php php-mysql ``` 安装完成后,可以配置Apache或Nginx等Web服务器来运行PHP程序。 **1.2 第一个PHP程序** 创建一个简单的PHP文件,命名为`hello.php`: ```php <?php ...

    PHP环境 下载

    对于Linux用户,可以使用包管理器安装Apache,例如在Ubuntu上运行`sudo apt-get install apache2`。在Mac上,Homebrew可以用来安装Apache。 3. **配置Apache与PHP**: 在安装了Apache之后,需要配置其与PHP协同...

    joker-telegram-bot:用PHP制作的Telegram机器人既简单又有趣

    目前,该机器人已在电报频道安装和开始Ubuntu / Debian的安装所需的软件包sudo apt-get install php-cli php-gd php-json php-curl php-mbstring git composer screen ttf-ubuntu-font-family CentOS /红帽安装所需...

    如何让你的php支持pdf生成png缩略图?

    `TCPDF`是一个PHP类库,用于创建和编辑PDF文档,它不直接支持PDF转PNG,但可以结合其他工具如`ImageMagick`来实现。而`Ghostscript`则是一个强大的PDF处理工具,可以直接将PDF转换为各种图像格式。 1. **安装依赖**...

    PHP使用php-resque库配合Redis实现MQ消息队列的教程

    - 安装Redis服务器,通常在Linux环境下,如Ubuntu 12.04 LTS,使用`apt-get install redis-server`即可。 - 安装Composer,用于管理PHP依赖。在终端执行`apt-get install curl`,然后下载并安装Composer:`curl -s ...

    Chemex资产管理运维平台-PHP

    2、为你的计算机安装 mariaDB ,并且有可以使用的 mariadb-client 客户端工具,一般安装完 MariaDB 会自动安装,如果在 Ubuntu 上可能需要另外执行 sudo apt install mariadb-client 进行安装。 3、创建一个数据库,...

Global site tag (gtag.js) - Google Analytics