美文网首页
Windows 10 子系统Debian安装PHP Compos

Windows 10 子系统Debian安装PHP Compos

作者: 亻火子 | 来源:发表于2020-02-12 16:08 被阅读0次

    一、在Debian上安装PHP

    #更新软件源
    apt update
    apt upgrade
    #安装PHP7.3
    apt-cache search php7.3 #查看PHP库
    #先安装curl zip unzip
    apt install curl zip unzip
    #php-zip 扩展依赖 unzip
    apt install php7.3-common php7.3-cli php7.3-zip
    

    二、在Debian上安装Composer

    1、可以通过运行以下命令从getcomposer.org网站下载composer脚本。它将在当前目录中创建一个composer.phar文件。

    #从getcomposer.org网站下载composer脚本
    curl -sS https://getcomposer.org/installer | php
    

    2、复制bin目录下的composer.phar文件,以便在系统中的任意位置都可以使用。另外,对文件设置执行权限。将文件名从composer.phar更改为composer以便于使用。

    mv composer.phar /usr/local/bin/composer
    chmod +x /usr/local/bin/composer
    

    3、输入composer,查看Composer版本的详细信息以及Composer命令中可用的选项。

    hz@DESKTOP-LJUDN83:~$ composer
       ______
      / ____/___  ____ ___  ____  ____  ________  _____
     / /   / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
    / /___/ /_/ / / / / / / /_/ / /_/ (__  )  __/ /
    \____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
                        /_/
    Composer version 1.9.3 2020-02-04 12:58:49
    
    Usage:
      command [options] [arguments]
    
    Options:
      -h, --help                     Display this help message
      -q, --quiet                    Do not output any message
      -V, --version                  Display this application version
          --ansi                     Force ANSI output
          --no-ansi                  Disable ANSI output
      -n, --no-interaction           Do not ask any interactive question
          --profile                  Display timing and memory usage information
          --no-plugins               Whether to disable plugins.
      -d, --working-dir=WORKING-DIR  If specified, use the given directory as working directory.
          --no-cache                 Prevent use of the cache
      -v|vv|vvv, --verbose           Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
    

    4、升级php composer

    composer可以在不重新下载的情况下自行升级。只需从终端运行下面的命令来升级debian上的compose。

    composer self-update
    

    以上就是在Windows 10 子系统Debian上安装PHP Composer的详细内容。

    相关文章

      网友评论

          本文标题:Windows 10 子系统Debian安装PHP Compos

          本文链接:https://www.haomeiwen.com/subject/artffhtx.html