So i checked out what the problem might have been and came across the solution:
Put this is your themes function.php
add_filter( ‘wp_image_editors’, ‘change_graphic_lib’ );
function change_graphic_lib($array) {
return array( ‘WP_Image_Editor_GD’, ‘WP_Image_Editor_Imagick’ );
}
After having done that the import worked peoperly as well as the images upload.
Hope this will help someone else in the future!