Uncaught Error: Cannot instantiate interface Temando PackagingRepositoryInterface Magento 2.

Temando Shipping error in the Magento backend Product details page display error like this,

Fatal error: Uncaught Error: Cannot instantiate interface Temando\Shipping\Model\ResourceModel\Repository\PackagingRepositoryInterface.

You can resolve this error by the Remove Temando product attribute from the eav_attribute database table.

Though you have disabled the Temando_Shipping module, an error will be display on the admin panel product page because the Temando attribute generates an exception class it Temando\Shipping\Model\Source\PackagingType does not exist when trying to edit product.

You can delete all three entry from the eav_attribute table with the SQL query,
DELETE FROM ‘eav_attribute’ WHERE ‘source_model’ LIKE ‘%Temando%’

Temando attribute creates an issue is Packaging Name, Packaging Type and Country of Origin from the module.

To check its working in the backend, run the compilation command again from the root of Magento,

php bin/magento setup:di:compile
rm -rf generated/code/*

Now Refresh the Page and check the Edit Product. It’s working fine.