Lines Matching refs:egg_path
239 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
240 if not egg_path:
242 return self._install_from_egg(install_dir, egg_path)
247 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
248 if not egg_path:
250 return self._install_from_egg(install_dir, egg_path)
363 def _install_from_egg(self, install_dir, egg_path): argument
371 status = system("unzip -q -o -d '%s' '%s'" % (install_dir, egg_path))
373 logging.error('unzip of %s failed', egg_path)
609 egg_path = self._build_egg_using_setup_py()
610 if not egg_path:
623 shutil.copy(egg_path, temp_dir)
624 egg_name = os.path.split(egg_path)[1]