Lines Matching refs:symlinks
30 on Windows platforms but symlinks elsewhere. If instantiated some
31 other way, the default is to *not* use symlinks.
37 :param symlinks: If True, attempt to symlink rather than copy files into
47 symlinks=False, upgrade=False, with_pip=False, prompt=None,
51 self.symlinks = symlinks
196 if nt and self.symlinks:
197 args.append('--symlinks')
198 if not nt and not self.symlinks:
222 force_copy = not self.symlinks
242 if self.symlinks and not bad_src and not os.path.islink(dst):
253 # On Windows, we rewrite symlinks to our base python.exe into
299 # symlinks are not wanted
304 if self.symlinks:
306 # If symlinks fail, you'll get unnecessary copies of files, but
307 # we assume that if you've opted into symlinks on Windows then
463 symlinks=False, with_pip=False, prompt=None, upgrade_deps=False):
466 clear=clear, symlinks=symlinks, with_pip=with_pip,
502 group.add_argument('--symlinks', default=use_symlinks,
503 action='store_true', dest='symlinks',
504 help='Try to use symlinks rather than copies, '
505 'when symlinks are not the default for '
508 action='store_false', dest='symlinks',
509 help='Try to use copies rather than symlinks, '
510 'even when symlinks are the default for '
540 symlinks=options.symlinks,