Created
January 30, 2020 09:20
-
-
Save benmarsh/980d9e44b37c5a90a1cf0d2ba90bb259 to your computer and use it in GitHub Desktop.
Install ImageMagick / Imagick on a Laravel Forge server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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