Home > Net >  apt-get command not working on xampp, running windows 11
apt-get command not working on xampp, running windows 11

Time:05-25

I'm facing error in wordpress on my local server while trying to edin an image, it says "Image rotation is not supported by your web host."

I have a Windows 11 64-bit PC that runs a XAMPP.

I need to install a few things on this Apache server via command line, so I'm going to the "shell" option from the Xampp control panel. But when I run the "apt-get" command, it says that "it is not recognized as an internal or external command, operable program or batch file."

CodePudding user response:

apt-get is only available on Debian-based linux distributions.

Go to your php.ini file search for ;extension=gd remove the ; and restart the server this should fix your problem.

  • Related