9abf83
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
9abf83
index 91c48b3..0c9b0f4 100755
9abf83
--- a/setuptools/command/easy_install.py
9abf83
+++ b/setuptools/command/easy_install.py
9abf83
@@ -446,6 +446,12 @@ class easy_install(Command):
9abf83
         instdir = normalize_path(self.install_dir)
9abf83
         pth_file = os.path.join(instdir, 'easy-install.pth')
9abf83
 
9abf83
+        if not os.path.exists(instdir):
9abf83
+            try:
9abf83
+                os.makedirs(instdir)
9abf83
+            except (OSError, IOError):
9abf83
+                self.cant_write_to_target()
9abf83
+
9abf83
         # Is it a configured, PYTHONPATH, implicit, or explicit site dir?
9abf83
         is_site_dir = instdir in self.all_site_dirs
9abf83