Home | History | Annotate | Download | only in system

Lines Matching full:target_dir

70                  target_dir=None, temp_dir=None):
81 target_dir: The directory path to which packages should be installed.
92 if target_dir is None:
94 target_dir = os.path.join(this_dir, "autoinstalled")
97 self._set_up_target_dir(target_dir, append_to_search_path, make_package)
99 self._target_dir = target_dir
132 def _set_up_target_dir(self, target_dir, append_to_search_path,
137 target_dir: The path to the target directory to set up.
147 if not os.path.exists(target_dir):
148 self._create_directory(target_dir, "autoinstall target")
151 sys.path.append(target_dir)
154 init_path = os.path.join(target_dir, "__init__.py")
266 def _extract_all(self, zip_file, target_dir):
267 self._log_transfer("Extracting zip file...", zip_file, target_dir)
275 path = os.path.join(target_dir, name)
503 target_dir = os.path.join(this_dir, "autoinstalled")
504 temp_dir = os.path.join(target_dir, "Temp")
506 installer = AutoInstaller(target_dir=target_dir,