- πΊπΈUnited States knight coder
Here are instructions for installing Imagemagick because it is an installation issue either not installed or installed incorrectly. You need the command line for your environment. if you are remote then ssh into your server to complete this process.
C compiler installation (required):
1. check if C compiler exists: gcc --version (if not proceed to step 2 else install ImageMagick)
2. sudo apt update && apt install build-essentials - https://www.geeksforgeeks.org/how-to-install-gcc-compiler-on-linux/
3. gcc --version to verify installation.ImageMagick installation:
1. git clone https://github.com/ImageMagick/ImageMagick.git ImageMagick-7.1.0
2. cd ImageMagick-7.1.0
3. ./configure
4. make - if you don't have make install, try running gmakeor install make with sudo apt install makeI hope someone finds this useful and good luck!
- πΊπΈUnited States knight coder
It more than likely an installation issue either it is not installed or was incorrectly installed on your system. First thing you will need to get started is a C compiler.
1. check if you already have a C compiler
gcc --version2. if not and you are on a linux system then install the compiler
sudo apt update && apt build-essentials3. Check if installation worked.
gcc --versionInstall ImageMagick on a linux device from the /usr/local/bin execute the following steps:
1. clone the project to your directory
git clone https://github.com/ImageMagick/ImageMagick.git ImageMagick-7.1.02. Navigate into the project directory:
cd ImageMagick-7.1.03. Run the make command to compile the files for installation:
makea. If you do not have make try running:
gmake
b. or install make
sudo apt-get install build-essential/strong>4. After installation build is compiled then install the module:
sudo make install5. You may need to configure the dynamic linker run-time bindings:
sudo ldconfig /usr/local/lib6. Finally verify your installation:
/usr/local/bin/convert logo: logo.gif