diff --git a/src/Composer/Installer.php b/src/Composer/Installer.php
index 5d70832b2..ca7deb3ac 100644
--- a/src/Composer/Installer.php
+++ b/src/Composer/Installer.php
@@ -473,6 +473,9 @@ class Installer
} catch (SolverProblemsException $e) {
$this->io->writeError('Your requirements could not be resolved to an installable set of packages.', true, IOInterface::QUIET);
$this->io->writeError($e->getMessage());
+ if ($this->update && !$this->devMode) {
+ $this->io->writeError('Running update with --no-dev does not mean require-dev is ignored, it just means the packages will not be installed. If dev requirements are blocking the update you have to resolve those problems.', true, IOInterface::QUIET);
+ }
return array(max(1, $e->getCode()), array());
}