7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravelインストール時に出たzipのエラー解決備忘録

Posted at

環境

・OS : Windows11
・Composer : 2.5.1
・XAMPP : 8.2.0

エラー

composer create-project laravel/laravel:^8.* testのコマンドで
インストールしようとした際に
The zip extension and unzip/7z command are both missingが下図のようにたくさん出て怖い
2023_02_01_2.png

解決法

php.iniをVScode等で開く  C:\xampp\php\php.iniにある

zipを文字検索などで検索すると;extension=zipが出てくる

・この;を外し、extension=zipにして保存する
php.ini - php.png

これでcomposer create-project laravel/laravel:^8.* testを実行するとスムーズにインストールできる。

7
7
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?