Skip to content

Instantly share code, notes, and snippets.

@benmarsh
Created January 30, 2020 09:20
Show Gist options
  • Save benmarsh/980d9e44b37c5a90a1cf0d2ba90bb259 to your computer and use it in GitHub Desktop.
Save benmarsh/980d9e44b37c5a90a1cf0d2ba90bb259 to your computer and use it in GitHub Desktop.
Install ImageMagick / Imagick on a Laravel Forge server
# Check if imagick is installed
# Returns blank if not
php -m | grep imagick
# Install
sudo apt-get install php-imagick
# Check again
# Should return 'imagick'
php -m | grep imagick
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment