Windows WP-CLI 包目录丢失

Windows WP-CLI packages directory missing

Installed wp-cli on Windows via composer as global require with command composer global require wp-cli/wp-cli 并像这样获得 OK 输出。

D:\>composer global require wp-cli/wp-cli
Changed current directory to C:/Users/User/AppData/Roaming/Composer
Using version ^1.2 for wp-cli/wp-cli
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 51 installs, 0 updates, 0 removals
  - Installing wp-cli/autoload-splitter (v0.1.3): Downloading (100%)
  - Installing wp-cli/php-cli-tools (v0.11.2): Downloading (100%)
  - Installing wp-cli/mustangostang-spyc (0.6.3): Downloading (100%)
  - Installing composer/semver (1.4.2): Downloading (100%)
  - Installing mustache/mustache (v2.11.1): Downloading (100%)
  - Installing ramsey/array_column (1.1.3): Downloading (100%)
  - Installing rmccue/requests (v1.7.0): Downloading (100%)
  - Installing symfony/filesystem (v3.3.2): Downloading (100%)
  - Installing symfony/config (v3.3.2): Downloading (100%)
  - Installing psr/log (1.0.2): Downloading (100%)
  - Installing symfony/debug (v3.3.2): Downloading (100%)
  - Installing symfony/polyfill-mbstring (v1.3.0): Downloading (100%)
  - Installing symfony/console (v3.3.2): Downloading (100%)
  - Installing psr/container (1.0.0): Downloading (100%)
  - Installing symfony/dependency-injection (v3.3.2): Downloading (100%)
  - Installing symfony/event-dispatcher (v3.3.2): Downloading (100%)
  - Installing symfony/finder (v3.3.2): Downloading (100%)
  - Installing symfony/process (v3.3.2): Downloading (100%)
  - Installing symfony/translation (v3.3.2): Downloading (100%)
  - Installing symfony/yaml (v3.3.2): Downloading (100%)
  - Installing wp-cli/cache-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/checksum-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/config-command (v1.1.1): Downloading (100%)
  - Installing wp-cli/core-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/cron-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/widget-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/super-admin-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/wp-cli (v1.2.1): Downloading (100%)
    Skipped installation of bin bin/wp.bat proxy for package wp-cli/wp-cli: a .bat proxy was already installed
  - Installing wp-cli/shell-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/server-command (v1.0.5): Downloading (100%)
  - Installing wp-cli/search-replace-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/scaffold-command (v1.0.4): Downloading (100%)
  - Installing wp-cli/role-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/rewrite-command (v1.0.1): Downloading (100%)
  - Installing seld/phar-utils (1.0.1): Downloading (100%)
  - Installing seld/jsonlint (1.6.0): Downloading (100%)
  - Installing seld/cli-prompt (1.0.3): Downloading (100%)
  - Installing justinrainbow/json-schema (5.2.1): Downloading (100%)
  - Installing composer/spdx-licenses (1.1.6): Downloading (100%)
  - Installing composer/ca-bundle (1.0.7): Downloading (100%)
  - Installing composer/composer (1.4.2): Downloading (100%)
  - Installing wp-cli/package-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/media-command (v1.0.2): Downloading (100%)
  - Installing wp-cli/language-command (v1.0.2): Downloading (100%)
  - Installing wp-cli/import-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/extension-command (v1.1.0): Downloading (100%)
  - Installing nb/oxymel (v0.1.0): Downloading (100%)
  - Installing wp-cli/export-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/eval-command (v1.0.1): Downloading (100%)
  - Installing wp-cli/entity-command (v1.0.2): Downloading (100%)
  - Installing wp-cli/db-command (v1.1.0): Downloading (100%)
symfony/dependency-injection suggests installing symfony/expression-language (For using expressions in service container
 configuration)
symfony/dependency-injection suggests installing symfony/proxy-manager-bridge (Generate service proxies to lazy load the
m)
symfony/event-dispatcher suggests installing symfony/http-kernel ()
wp-cli/wp-cli suggests installing psy/psysh (Enhanced `wp shell` functionality)
Writing lock file
Generating autoload files

D:\>

然而,当我使用 wp --info 检查 wp-cli 安装时,我缺少 WP-CLI 包目录 .

D:\>wp --info
PHP binary:     D:\XAMPP\php\php.exe
PHP version:    5.6.8
php.ini used:   D:\XAMPP\php\php.ini
WP-CLI root dir:        phar://wp-cli.phar
WP-CLI packages dir:
WP-CLI global config:
WP-CLI project config:
WP-CLI version: 1.1.0

我想使用此命令

全局安装 this package

wp package install iandunn/wp-cli-rename-db-prefix

但出现以下错误:

Error: Composer directory for packages couldn't be created.

我的 PATH 有这些变量。

C:\Users\User\AppData\Roaming\npm;D:\XAMPP\php;C:\Users\User\AppData\Roaming\Composer\vendor\bin;D:\XAMPP\mysql

请问如何确保 wp-cli 的包目录是使用 composer 的全局 require install 方法设置的?

我不必在 Windows 环境变量中设置 PATH 值,而是创建一个名为 WP_CLI_PACKAGES_DIR 新变量 并设置该变量的值至 C:\Users\YOUR_WINDOWS_YOURSERNAME_HERE\.wp-cli\packages.

我还必须在 C:\Users\YOUR_WINDOWS_YOURSERNAME_HERE\.wp-cli\ 下创建文件夹 packages。文件夹不是自动创建的。

现在我可以很好地安装 wp-cli 包了,运行 它也运行得很好。

https://make.wordpress.org/cli/handbook/config/#environment-variables