PKj#], __main__.pynu[import sys from . import main rc = 1 try: main() rc = 0 except Exception as e: print('Error: %s' % e, file=sys.stderr) sys.exit(rc) PKj#]_~h~h __init__.pynu[""" Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. """ import logging import os import shutil import subprocess import sys import sysconfig import types import shlex CORE_VENV_DEPS = ('pip',) logger = logging.getLogger(__name__) class EnvBuilder: """ This class exists to allow virtual environment creation to be customized. The constructor parameters determine the builder's behaviour when called upon to create a virtual environment. By default, the builder makes the system (global) site-packages dir *un*available to the created environment. If invoked using the Python -m option, the default is to use copying on Windows platforms but symlinks elsewhere. If instantiated some other way, the default is to *not* use symlinks. :param system_site_packages: If True, the system (global) site-packages dir is available to created environments. :param clear: If True, delete the contents of the environment directory if it already exists, before environment creation. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param upgrade: If True, upgrade an existing virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment :param prompt: Alternative terminal prefix for the environment. :param upgrade_deps: Update the base venv modules to the latest on PyPI """ def __init__(self, system_site_packages=False, clear=False, symlinks=False, upgrade=False, with_pip=False, prompt=None, upgrade_deps=False): self.system_site_packages = system_site_packages self.clear = clear self.symlinks = symlinks self.upgrade = upgrade self.with_pip = with_pip self.orig_prompt = prompt if prompt == '.': # see bpo-38901 prompt = os.path.basename(os.getcwd()) self.prompt = prompt self.upgrade_deps = upgrade_deps def create(self, env_dir): """ Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. """ env_dir = os.path.abspath(env_dir) context = self.ensure_directories(env_dir) # See issue 24875. We need system_site_packages to be False # until after pip is installed. true_system_site_packages = self.system_site_packages self.system_site_packages = False self.create_configuration(context) self.setup_python(context) if self.with_pip: self._setup_pip(context) if not self.upgrade: self.setup_scripts(context) self.post_setup(context) if true_system_site_packages: # We had set it to False before, now # restore it and rewrite the configuration self.system_site_packages = True self.create_configuration(context) if self.upgrade_deps: self.upgrade_dependencies(context) def clear_directory(self, path): for fn in os.listdir(path): fn = os.path.join(path, fn) if os.path.islink(fn) or os.path.isfile(fn): os.remove(fn) elif os.path.isdir(fn): shutil.rmtree(fn) def _venv_path(self, env_dir, name): vars = { 'base': env_dir, 'platbase': env_dir, 'installed_base': env_dir, 'installed_platbase': env_dir, } return sysconfig.get_path(name, scheme='venv', vars=vars) @classmethod def _same_path(cls, path1, path2): """Check whether two paths appear the same. Whether they refer to the same file is irrelevant; we're testing for whether a human reader would look at the path string and easily tell that they're the same file. """ if sys.platform == 'win32': if os.path.normcase(path1) == os.path.normcase(path2): return True # gh-90329: Don't display a warning for short/long names import _winapi try: path1 = _winapi.GetLongPathName(os.fsdecode(path1)) except OSError: pass try: path2 = _winapi.GetLongPathName(os.fsdecode(path2)) except OSError: pass if os.path.normcase(path1) == os.path.normcase(path2): return True return False else: return path1 == path2 def ensure_directories(self, env_dir): """ Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. """ def create_if_needed(d): if not os.path.exists(d): os.makedirs(d) elif os.path.islink(d) or os.path.isfile(d): raise ValueError('Unable to create directory %r' % d) if os.pathsep in os.fspath(env_dir): raise ValueError(f'Refusing to create a venv in {env_dir} because ' f'it contains the PATH separator {os.pathsep}.') if os.path.exists(env_dir) and self.clear: self.clear_directory(env_dir) context = types.SimpleNamespace() context.env_dir = env_dir context.env_name = os.path.split(env_dir)[1] prompt = self.prompt if self.prompt is not None else context.env_name context.prompt = '(%s) ' % prompt create_if_needed(env_dir) executable = sys._base_executable if not executable: # see gh-96861 raise ValueError('Unable to determine path to the running ' 'Python interpreter. Provide an explicit path or ' 'check that your PATH environment variable is ' 'correctly set.') dirname, exename = os.path.split(os.path.abspath(executable)) context.executable = executable context.python_dir = dirname context.python_exe = exename binpath = self._venv_path(env_dir, 'scripts') incpath = self._venv_path(env_dir, 'include') libpath = self._venv_path(env_dir, 'purelib') context.inc_path = incpath create_if_needed(incpath) context.lib_path = libpath create_if_needed(libpath) # Issue 21197: create lib64 as a symlink to lib on 64-bit non-OS X POSIX if ((sys.maxsize > 2**32) and (os.name == 'posix') and (sys.platform != 'darwin')): link_path = os.path.join(env_dir, 'lib64') if not os.path.exists(link_path): # Issue #21643 os.symlink('lib', link_path) context.bin_path = binpath context.bin_name = os.path.relpath(binpath, env_dir) context.env_exe = os.path.join(binpath, exename) create_if_needed(binpath) # Assign and update the command to use when launching the newly created # environment, in case it isn't simply the executable script (e.g. bpo-45337) context.env_exec_cmd = context.env_exe if sys.platform == 'win32': # bpo-45337: Fix up env_exec_cmd to account for file system redirections. # Some redirects only apply to CreateFile and not CreateProcess real_env_exe = os.path.realpath(context.env_exe) if not self._same_path(real_env_exe, context.env_exe): logger.warning('Actual environment location may have moved due to ' 'redirects, links or junctions.\n' ' Requested location: "%s"\n' ' Actual location: "%s"', context.env_exe, real_env_exe) context.env_exec_cmd = real_env_exe return context def create_configuration(self, context): """ Create a configuration file indicating where the environment's Python was copied from, and whether the system site-packages should be made available in the environment. :param context: The information for the environment creation request being processed. """ context.cfg_path = path = os.path.join(context.env_dir, 'pyvenv.cfg') with open(path, 'w', encoding='utf-8') as f: f.write('home = %s\n' % context.python_dir) if self.system_site_packages: incl = 'true' else: incl = 'false' f.write('include-system-site-packages = %s\n' % incl) f.write('version = %d.%d.%d\n' % sys.version_info[:3]) if self.prompt is not None: f.write(f'prompt = {self.prompt!r}\n') f.write('executable = %s\n' % os.path.realpath(sys.executable)) args = [] nt = os.name == 'nt' if nt and self.symlinks: args.append('--symlinks') if not nt and not self.symlinks: args.append('--copies') if not self.with_pip: args.append('--without-pip') if self.system_site_packages: args.append('--system-site-packages') if self.clear: args.append('--clear') if self.upgrade: args.append('--upgrade') if self.upgrade_deps: args.append('--upgrade-deps') if self.orig_prompt is not None: args.append(f'--prompt="{self.orig_prompt}"') args.append(context.env_dir) args = ' '.join(args) f.write(f'command = {sys.executable} -m venv {args}\n') if os.name != 'nt': def symlink_or_copy(self, src, dst, relative_symlinks_ok=False): """ Try symlinking a file, and if that fails, fall back to copying. """ force_copy = not self.symlinks if not force_copy: try: if not os.path.islink(dst): # can't link to itself! if relative_symlinks_ok: assert os.path.dirname(src) == os.path.dirname(dst) os.symlink(os.path.basename(src), dst) else: os.symlink(src, dst) except Exception: # may need to use a more specific exception logger.warning('Unable to symlink %r to %r', src, dst) force_copy = True if force_copy: shutil.copyfile(src, dst) else: def symlink_or_copy(self, src, dst, relative_symlinks_ok=False): """ Try symlinking a file, and if that fails, fall back to copying. """ bad_src = os.path.lexists(src) and not os.path.exists(src) if self.symlinks and not bad_src and not os.path.islink(dst): try: if relative_symlinks_ok: assert os.path.dirname(src) == os.path.dirname(dst) os.symlink(os.path.basename(src), dst) else: os.symlink(src, dst) return except Exception: # may need to use a more specific exception logger.warning('Unable to symlink %r to %r', src, dst) # On Windows, we rewrite symlinks to our base python.exe into # copies of venvlauncher.exe basename, ext = os.path.splitext(os.path.basename(src)) srcfn = os.path.join(os.path.dirname(__file__), "scripts", "nt", basename + ext) # Builds or venv's from builds need to remap source file # locations, as we do not put them into Lib/venv/scripts if sysconfig.is_python_build() or not os.path.isfile(srcfn): if basename.endswith('_d'): ext = '_d' + ext basename = basename[:-2] if basename == 'python': basename = 'venvlauncher' elif basename == 'pythonw': basename = 'venvwlauncher' src = os.path.join(os.path.dirname(src), basename + ext) else: src = srcfn if not os.path.exists(src): if not bad_src: logger.warning('Unable to copy %r', src) return shutil.copyfile(src, dst) def setup_python(self, context): """ Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. """ binpath = context.bin_path path = context.env_exe copier = self.symlink_or_copy dirname = context.python_dir if os.name != 'nt': copier(context.executable, path) if not os.path.islink(path): os.chmod(path, 0o755) for suffix in ('python', 'python3', f'python3.{sys.version_info[1]}'): path = os.path.join(binpath, suffix) if not os.path.exists(path): # Issue 18807: make copies if # symlinks are not wanted copier(context.env_exe, path, relative_symlinks_ok=True) if not os.path.islink(path): os.chmod(path, 0o755) else: if self.symlinks: # For symlinking, we need a complete copy of the root directory # If symlinks fail, you'll get unnecessary copies of files, but # we assume that if you've opted into symlinks on Windows then # you know what you're doing. suffixes = [ f for f in os.listdir(dirname) if os.path.normcase(os.path.splitext(f)[1]) in ('.exe', '.dll') ] if sysconfig.is_python_build(): suffixes = [ f for f in suffixes if os.path.normcase(f).startswith(('python', 'vcruntime')) ] else: suffixes = {'python.exe', 'python_d.exe', 'pythonw.exe', 'pythonw_d.exe'} base_exe = os.path.basename(context.env_exe) suffixes.add(base_exe) for suffix in suffixes: src = os.path.join(dirname, suffix) if os.path.lexists(src): copier(src, os.path.join(binpath, suffix)) if sysconfig.is_python_build(): # copy init.tcl for root, dirs, files in os.walk(context.python_dir): if 'init.tcl' in files: tcldir = os.path.basename(root) tcldir = os.path.join(context.env_dir, 'Lib', tcldir) if not os.path.exists(tcldir): os.makedirs(tcldir) src = os.path.join(root, 'init.tcl') dst = os.path.join(tcldir, 'init.tcl') shutil.copyfile(src, dst) break def _call_new_python(self, context, *py_args, **kwargs): """Executes the newly created Python using safe-ish options""" # gh-98251: We do not want to just use '-I' because that masks # legitimate user preferences (such as not writing bytecode). All we # really need is to ensure that the path variables do not overrule # normal venv handling. args = [context.env_exec_cmd, *py_args] kwargs['env'] = env = os.environ.copy() env['VIRTUAL_ENV'] = context.env_dir env.pop('PYTHONHOME', None) env.pop('PYTHONPATH', None) kwargs['cwd'] = context.env_dir kwargs['executable'] = context.env_exec_cmd subprocess.check_output(args, **kwargs) def _setup_pip(self, context): """Installs or upgrades pip in a virtual environment""" self._call_new_python(context, '-m', 'ensurepip', '--upgrade', '--default-pip', stderr=subprocess.STDOUT) def setup_scripts(self, context): """ Set up scripts into the created environment from a directory. This method installs the default scripts into the environment being created. You can prevent the default installation by overriding this method if you really need to, or if you need to specify a different location for the scripts to install. By default, the 'scripts' directory in the venv package is used as the source of scripts to install. """ path = os.path.abspath(os.path.dirname(__file__)) path = os.path.join(path, 'scripts') self.install_scripts(context, path) def post_setup(self, context): """ Hook for post-setup modification of the venv. Subclasses may install additional packages or scripts here, add activation shell scripts, etc. :param context: The information for the environment creation request being processed. """ pass def replace_variables(self, text, context): """ Replace variable placeholders in script text with context-specific variables. Return the text passed in , but with variables replaced. :param text: The text in which to replace placeholder variables. :param context: The information for the environment creation request being processed. """ replacements = { '__VENV_DIR__': context.env_dir, '__VENV_NAME__': context.env_name, '__VENV_PROMPT__': context.prompt, '__VENV_BIN_NAME__': context.bin_name, '__VENV_PYTHON__': context.env_exe, } def quote_ps1(s): """ This should satisfy PowerShell quoting rules [1], unless the quoted string is passed directly to Windows native commands [2]. [1]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules [2]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_parsing#passing-arguments-that-contain-quote-characters """ s = s.replace("'", "''") return f"'{s}'" def quote_bat(s): return s # gh-124651: need to quote the template strings properly quote = shlex.quote script_path = context.script_path if script_path.endswith('.ps1'): quote = quote_ps1 elif script_path.endswith('.bat'): quote = quote_bat else: # fallbacks to POSIX shell compliant quote quote = shlex.quote replacements = {key: quote(s) for key, s in replacements.items()} for key, quoted in replacements.items(): text = text.replace(key, quoted) return text def install_scripts(self, context, path): """ Install scripts into the created environment from a directory. :param context: The information for the environment creation request being processed. :param path: Absolute pathname of a directory containing script. Scripts in the 'common' subdirectory of this directory, and those in the directory named for the platform being run on, are installed in the created environment. Placeholder variables are replaced with environment- specific values. """ binpath = context.bin_path plen = len(path) for root, dirs, files in os.walk(path): if root == path: # at top-level, remove irrelevant dirs for d in dirs[:]: if d not in ('common', os.name): dirs.remove(d) continue # ignore files in top level for f in files: if (os.name == 'nt' and f.startswith('python') and f.endswith(('.exe', '.pdb'))): continue srcfile = os.path.join(root, f) suffix = root[plen:].split(os.sep)[2:] if not suffix: dstdir = binpath else: dstdir = os.path.join(binpath, *suffix) if not os.path.exists(dstdir): os.makedirs(dstdir) dstfile = os.path.join(dstdir, f) with open(srcfile, 'rb') as f: data = f.read() if not srcfile.endswith(('.exe', '.pdb')): context.script_path = srcfile try: data = data.decode('utf-8') data = self.replace_variables(data, context) data = data.encode('utf-8') except UnicodeError as e: data = None logger.warning('unable to copy script %r, ' 'may be binary: %s', srcfile, e) if data is not None: with open(dstfile, 'wb') as f: f.write(data) shutil.copymode(srcfile, dstfile) def upgrade_dependencies(self, context): logger.debug( f'Upgrading {CORE_VENV_DEPS} packages in {context.bin_path}' ) self._call_new_python(context, '-m', 'pip', 'install', '--upgrade', *CORE_VENV_DEPS) def create(env_dir, system_site_packages=False, clear=False, symlinks=False, with_pip=False, prompt=None, upgrade_deps=False): """Create a virtual environment in a directory.""" builder = EnvBuilder(system_site_packages=system_site_packages, clear=clear, symlinks=symlinks, with_pip=with_pip, prompt=prompt, upgrade_deps=upgrade_deps) builder.create(env_dir) def main(args=None): import argparse parser = argparse.ArgumentParser(prog=__name__, description='Creates virtual Python ' 'environments in one or ' 'more target ' 'directories.', epilog='Once an environment has been ' 'created, you may wish to ' 'activate it, e.g. by ' 'sourcing an activate script ' 'in its bin directory.') parser.add_argument('dirs', metavar='ENV_DIR', nargs='+', help='A directory to create the environment in.') parser.add_argument('--system-site-packages', default=False, action='store_true', dest='system_site', help='Give the virtual environment access to the ' 'system site-packages dir.') if os.name == 'nt': use_symlinks = False else: use_symlinks = True group = parser.add_mutually_exclusive_group() group.add_argument('--symlinks', default=use_symlinks, action='store_true', dest='symlinks', help='Try to use symlinks rather than copies, ' 'when symlinks are not the default for ' 'the platform.') group.add_argument('--copies', default=not use_symlinks, action='store_false', dest='symlinks', help='Try to use copies rather than symlinks, ' 'even when symlinks are the default for ' 'the platform.') parser.add_argument('--clear', default=False, action='store_true', dest='clear', help='Delete the contents of the ' 'environment directory if it ' 'already exists, before ' 'environment creation.') parser.add_argument('--upgrade', default=False, action='store_true', dest='upgrade', help='Upgrade the environment ' 'directory to use this version ' 'of Python, assuming Python ' 'has been upgraded in-place.') parser.add_argument('--without-pip', dest='with_pip', default=True, action='store_false', help='Skips installing or upgrading pip in the ' 'virtual environment (pip is bootstrapped ' 'by default)') parser.add_argument('--prompt', help='Provides an alternative prompt prefix for ' 'this environment.') parser.add_argument('--upgrade-deps', default=False, action='store_true', dest='upgrade_deps', help=f'Upgrade core dependencies ({", ".join(CORE_VENV_DEPS)}) ' 'to the latest version in PyPI') options = parser.parse_args(args) if options.upgrade and options.clear: raise ValueError('you cannot supply --upgrade and --clear together.') builder = EnvBuilder(system_site_packages=options.system_site, clear=options.clear, symlinks=options.symlinks, upgrade=options.upgrade, with_pip=options.with_pip, prompt=options.prompt, upgrade_deps=options.upgrade_deps) for d in options.dirs: builder.create(d) if __name__ == '__main__': rc = 1 try: main() rc = 0 except Exception as e: print('Error: %s' % e, file=sys.stderr) sys.exit(rc) PKj#]`4>scripts/posix/activate.fishnu[# This file must be used with "source /bin/activate.fish" *from fish* # (https://fishshell.com/). You cannot run it directly. function deactivate -d "Exit virtual environment and return to normal shell environment" # reset old environment variables if test -n "$_OLD_VIRTUAL_PATH" set -gx PATH $_OLD_VIRTUAL_PATH set -e _OLD_VIRTUAL_PATH end if test -n "$_OLD_VIRTUAL_PYTHONHOME" set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME set -e _OLD_VIRTUAL_PYTHONHOME end if test -n "$_OLD_FISH_PROMPT_OVERRIDE" set -e _OLD_FISH_PROMPT_OVERRIDE # prevents error when using nested fish instances (Issue #93858) if functions -q _old_fish_prompt functions -e fish_prompt functions -c _old_fish_prompt fish_prompt functions -e _old_fish_prompt end end set -e VIRTUAL_ENV set -e VIRTUAL_ENV_PROMPT if test "$argv[1]" != "nondestructive" # Self-destruct! functions -e deactivate end end # Unset irrelevant variables. deactivate nondestructive set -gx VIRTUAL_ENV __VENV_DIR__ set -gx _OLD_VIRTUAL_PATH $PATH set -gx PATH "$VIRTUAL_ENV/"__VENV_BIN_NAME__ $PATH # Unset PYTHONHOME if set. if set -q PYTHONHOME set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME set -e PYTHONHOME end if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" # fish uses a function instead of an env var to generate the prompt. # Save the current fish_prompt function as the function _old_fish_prompt. functions -c fish_prompt _old_fish_prompt # With the original prompt function renamed, we can override with our own. function fish_prompt # Save the return status of the last command. set -l old_status $status # Output the venv prompt; color taken from the blue of the Python logo. printf "%s%s%s" (set_color 4B8BBE) __VENV_PROMPT__ (set_color normal) # Restore the return status of the previous command. echo "exit $old_status" | . # Output the original/"old" prompt. _old_fish_prompt end set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" set -gx VIRTUAL_ENV_PROMPT __VENV_PROMPT__ end PKj#]]scripts/posix/activate.cshnu[# This file must be used with "source bin/activate.csh" *from csh*. # You cannot run it directly. # Created by Davide Di Blasi . # Ported to Python 3.3 venv by Andrew Svetlov alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' # Unset irrelevant variables. deactivate nondestructive setenv VIRTUAL_ENV __VENV_DIR__ set _OLD_VIRTUAL_PATH="$PATH" setenv PATH "$VIRTUAL_ENV/"__VENV_BIN_NAME__":$PATH" set _OLD_VIRTUAL_PROMPT="$prompt" if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then set prompt = __VENV_PROMPT__"$prompt" setenv VIRTUAL_ENV_PROMPT __VENV_PROMPT__ endif alias pydoc python -m pydoc rehash PKj#]0Vzzscripts/common/activatenu[# This file must be used with "source bin/activate" *from bash* # You cannot run it directly deactivate () { # reset old environment variables if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then PATH="${_OLD_VIRTUAL_PATH:-}" export PATH unset _OLD_VIRTUAL_PATH fi if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" export PYTHONHOME unset _OLD_VIRTUAL_PYTHONHOME fi # Call hash to forget past locations. Without forgetting # past locations the $PATH changes we made may not be respected. # See "man bash" for more details. hash is usually a builtin of your shell hash -r 2> /dev/null if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then PS1="${_OLD_VIRTUAL_PS1:-}" export PS1 unset _OLD_VIRTUAL_PS1 fi unset VIRTUAL_ENV unset VIRTUAL_ENV_PROMPT if [ ! "${1:-}" = "nondestructive" ] ; then # Self destruct! unset -f deactivate fi } # unset irrelevant variables deactivate nondestructive # on Windows, a path can contain colons and backslashes and has to be converted: case "$(uname)" in CYGWIN*|MSYS*|MINGW*) # transform D:\path\to\venv to /d/path/to/venv on MSYS and MINGW # and to /cygdrive/d/path/to/venv on Cygwin VIRTUAL_ENV=$(cygpath __VENV_DIR__) export VIRTUAL_ENV ;; *) # use the path as-is export VIRTUAL_ENV=__VENV_DIR__ ;; esac _OLD_VIRTUAL_PATH="$PATH" PATH="$VIRTUAL_ENV/"__VENV_BIN_NAME__":$PATH" export PATH VIRTUAL_ENV_PROMPT=__VENV_PROMPT__ export VIRTUAL_ENV_PROMPT # unset PYTHONHOME if set # this will fail if PYTHONHOME is set to the empty string (which is bad anyway) # could use `if (set -u; : $PYTHONHOME) ;` in bash if [ -n "${PYTHONHOME:-}" ] ; then _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" unset PYTHONHOME fi if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then _OLD_VIRTUAL_PS1="${PS1:-}" PS1="("__VENV_PROMPT__") ${PS1:-}" export PS1 fi # Call hash to forget past commands. Without forgetting # past commands the $PATH changes we made may not be respected hash -r 2> /dev/null PKj#]}d99#__pycache__/__init__.cpython-36.pycnu[3 iqM@sdZddlZddlZddlZddlZddlZddlZddlZeje Z GdddZ dddZ ddd Z e d krd Zye dZWn4ek rZzed eejd WYddZ[XnXejedS)z Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. Nc@seZdZdZdddZddZdd Zd d Zd d Ze j dkrHddZ d ddZ ddZ ddZddZddZddZddZdS)! EnvBuildera This class exists to allow virtual environment creation to be customized. The constructor parameters determine the builder's behaviour when called upon to create a virtual environment. By default, the builder makes the system (global) site-packages dir *un*available to the created environment. If invoked using the Python -m option, the default is to use copying on Windows platforms but symlinks elsewhere. If instantiated some other way, the default is to *not* use symlinks. :param system_site_packages: If True, the system (global) site-packages dir is available to created environments. :param clear: If True, delete the contents of the environment directory if it already exists, before environment creation. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param upgrade: If True, upgrade an existing virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment :param prompt: Alternative terminal prefix for the environment. FNcCs(||_||_||_||_||_||_dS)N)system_site_packagesclearsymlinksupgradewith_pipprompt)selfrrrrrrr %/usr/lib64/python3.6/venv/__init__.py__init__+s zEnvBuilder.__init__cCsxtjj|}|j|}|j}d|_|j||j||jrF|j||j s`|j ||j ||rtd|_|j|dS)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN) ospathabspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setup)r env_dircontextZtrue_system_site_packagesr r r create4s       zEnvBuilder.createcCs`xZtj|D]L}tjj||}tjj|s6tjj|rBtj|q tjj|r tj |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryNs   zEnvBuilder.clear_directorycCsdd}tjj|r$|jr$|j|tj}||_tjj|d|_ |j dk rT|j n|j }d||_ ||tj }t j dkrd|krtj d}nt j}tjjtjj|\}}||_||_||_t j dkrd } d } tjj|d d } n(d } d} tjj|ddt jddd } tjj|| |_} || || t jdkr|tjdkr|t j dkr|tjj|d} tjj| s|tjd| tjj|| |_}| |_tjj|||_|||S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. cSs@tjj|stj|n$tjj|s0tjj|r.create_if_neededNz(%s) darwin__PYVENV_LAUNCHER__Zwin32ZScriptsZIncludeLibz site-packagesbinincludelibz python%d.%d posixlib64l)r rr"rr!typesSimpleNamespacersplitenv_namerenvironsysplatform executabler python_dirZ python_exer version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)r rr&rrenvr9dirnameZexenameZbinnameZincpathZlibpathrZ link_pathbinpathr r r rVsN       zEnvBuilder.ensure_directoriesc Csztjj|jd|_}t|dddL}|jd|j|jrBd}nd}|jd||jd t j d d Wd QRXd S) aA Create a configuration file indicating where the environment's Python was copied from, and whether the system site-packages should be made available in the environment. :param context: The information for the environment creation request being processed. z pyvenv.cfgwzutf-8)encodingz home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d N) r rrrZcfg_pathopenwriter:rr7r;)r rrfZinclr r r rs zEnvBuilder.create_configurationntcCs(|jdrd}n|jdo"|jd}|S)N.pyd.dllTpythonz.exe)rMrN)endswith startswith)r rKresultr r r include_binarys zEnvBuilder.include_binaryc Cs|j }|syRtjj|s\|rPtjj|tjj|ks:ttjtjj||n tj||Wn&tk rt j d||d}YnX|rt j ||dS)zQ Try symlinking a file, and if that fails, fall back to copying. zUnable to symlink %r to %rTN) rr rrrCAssertionErrorr>basename Exceptionloggerwarningrcopyfile)r srcdstrelative_symlinks_okZ force_copyr r r symlink_or_copys  zEnvBuilder.symlink_or_copycs|j}|j}|j}||j||j}tjdkrtjj|sFtj |dxNdD]F}tjj ||}tjj |sL||j|ddtjj|sLtj |dqLWnRd}|j fdd tj |D}x<|D]4} tjj || } tjj || } | |jkr|| | qWtjj ||}tjj|rdfd d tj |D}x4|D],} tjj || } tjj || } || | q4Wxtj|jD]v\} } }d |krrtjj| }tjj |jd |}tjj |stj|tjj | d } tjj |d } tj| | PqrWd S)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rLirOpython3T)r\ZDLLscsg|]}|r|qSr r ).0rK)r,r r sz+EnvBuilder.setup_python..csg|]}|r|qSr r )r_rK)r,r r r`szinit.tclr*N)rOr^)r?rAr]r9r:r r=rrchmodrr"rSrrwalkrUrr#rrY)r rrDrZcopierrCsuffixZsubdirfilesrKrZr[rootdirsZtcldirr )r,r rsN              zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepipz --upgradez --default-pip)stderrN)rA subprocessZ check_outputZSTDOUT)r rcmdr r r rs zEnvBuilder._setup_pipcCs2tjjtjjt}tjj|d}|j||dS)a Set up scripts into the created environment from a directory. This method installs the default scripts into the environment being created. You can prevent the default installation by overriding this method if you really need to, or if you need to specify a different location for the scripts to install. By default, the 'scripts' directory in the venv package is used as the source of scripts to install. scriptsN)r rrrC__file__rinstall_scripts)r rrr r r rs zEnvBuilder.setup_scriptscCsdS)a Hook for post-setup modification of the venv. Subclasses may install additional packages or scripts here, add activation shell scripts, etc. :param context: The information for the environment creation request being processed. Nr )r rr r r rszEnvBuilder.post_setupc s|j|j|j|j|jd}dd}dd}tj|j}|jdrF|n|jdrV|ntjfdd |j D}x |j D]\}}|j ||}q|W|S) ai Replace variable placeholders in script text with context-specific variables. Return the text passed in , but with variables replaced. :param text: The text in which to replace placeholder variables. :param context: The information for the environment creation request being processed. )Z __VENV_DIR__Z __VENV_NAME__Z__VENV_PROMPT__Z__VENV_BIN_NAME__Z__VENV_PYTHON__cSs|jdd}d|dS)a This should satisfy PowerShell quoting rules [1], unless the quoted string is passed directly to Windows native commands [2]. [1]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules [2]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_parsing#passing-arguments-that-contain-quote-characters 'z'')replace)sr r r quote_ps1$s z/EnvBuilder.replace_variables..quote_ps1cSs|S)Nr )ror r r quote_bat.sz/EnvBuilder.replace_variables..quote_batz.ps1z.batcsi|]\}}||qSr r )r_keyro)quoter r <sz0EnvBuilder.replace_variables..) rr5rr@rAshlexrs script_pathrPitemsrn) r textrZ replacementsrprqrvrrZquotedr )rsr replace_variabless$     zEnvBuilder.replace_variablesc!Cs|j}t|}xtj|D]~\}}}||kr`x,|ddD]}|dtjfkr>|j|q>Wqx8|D].} tjj|| } ||djtj dd} | s|} ntjj|f| } tjj | stj | tjj| | } t | d} | j }WdQRX| jdsd| |_y$|jd}|j||}|jd}Wn6tk rb}zd}tjd| |WYdd}~XnX|dk rht | d} | j|WdQRXtj| | qhWqWdS) as Install scripts into the created environment from a directory. :param context: The information for the environment creation request being processed. :param path: Absolute pathname of a directory containing script. Scripts in the 'common' subdirectory of this directory, and those in the directory named for the platform being run on, are installed in the created environment. Placeholder variables are replaced with environment- specific values. Ncommonr.rbz.exezutf-8z+unable to copy script %r, may be binary: %swb)r?lenr rbr=rrrr4sepr"r#rIreadrPrvdecoderyencode UnicodeErrorrWrXrJrZcopymode)r rrrDZplenrerfrdr%rKZsrcfilercZdstdirZdstfiledataer r r rlAsB        zEnvBuilder.install_scripts)FFFFFN)F)__name__ __module__ __qualname____doc__r rr!rrr r=rSr]rrrrryrlr r r r rs  8  3  0rFcCs t|||||d}|j|dS)z,Create a virtual environment in a directory.)rrrrrN)rr)rrrrrrbuilderr r r rrsrc Csbd}tjd*krd}nttds"d}|s2tdn,ddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}|j }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'|j |}|j r"|j r"td(t|j|j |j|j |j|jd)}x|jD]}|j|qJWdS)+NTrHF base_prefixz.This script is only for use with Python >= 3.3rzFCreates virtual Python environments in one or more target directories.z|Once an environment has been created, you may wish to activate it, e.g. by sourcing an activate script in its bin directory.)progZ descriptionZepilogrfZENV_DIR+z)A directory to create the environment in.)metavarnargshelpz--system-site-packages store_true system_sitezDGive the virtual environment access to the system site-packages dir.)defaultactiondestrrLz --symlinksrz[Try to use symlinks rather than copies, when symlinks are not the default for the platform.z--copiesZ store_falsez\Try to use copies rather than symlinks, even when symlinks are the default for the platform.z--clearrzcDelete the contents of the environment directory if it already exists, before environment creation.z --upgraderzlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.z --without-piprz]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rz1you cannot supply --upgrade and --clear together.)rrrrrr)rHrH)r7r;hasattrr$argparseArgumentParserr add_argumentr r=Zadd_mutually_exclusive_group parse_argsrrrrrrrrfr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr%r r r mainzs\             r__main__r'z Error: %s)file)FFFFN)N)rZloggingr rrhr7r2ruZ getLoggerrrWrrrZrcrVrprintrgexitr r r r s, b  H$PKj#]W99)__pycache__/__init__.cpython-36.opt-1.pycnu[3 iqM@sdZddlZddlZddlZddlZddlZddlZddlZeje Z GdddZ dddZ ddd Z e d krd Zye dZWn4ek rZzed eejd WYddZ[XnXejedS)z Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. Nc@seZdZdZdddZddZdd Zd d Zd d Ze j dkrHddZ d ddZ ddZ ddZddZddZddZddZdS)! EnvBuildera This class exists to allow virtual environment creation to be customized. The constructor parameters determine the builder's behaviour when called upon to create a virtual environment. By default, the builder makes the system (global) site-packages dir *un*available to the created environment. If invoked using the Python -m option, the default is to use copying on Windows platforms but symlinks elsewhere. If instantiated some other way, the default is to *not* use symlinks. :param system_site_packages: If True, the system (global) site-packages dir is available to created environments. :param clear: If True, delete the contents of the environment directory if it already exists, before environment creation. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param upgrade: If True, upgrade an existing virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment :param prompt: Alternative terminal prefix for the environment. FNcCs(||_||_||_||_||_||_dS)N)system_site_packagesclearsymlinksupgradewith_pipprompt)selfrrrrrrr %/usr/lib64/python3.6/venv/__init__.py__init__+s zEnvBuilder.__init__cCsxtjj|}|j|}|j}d|_|j||j||jrF|j||j s`|j ||j ||rtd|_|j|dS)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN) ospathabspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setup)r env_dircontextZtrue_system_site_packagesr r r create4s       zEnvBuilder.createcCs`xZtj|D]L}tjj||}tjj|s6tjj|rBtj|q tjj|r tj |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryNs   zEnvBuilder.clear_directorycCsdd}tjj|r$|jr$|j|tj}||_tjj|d|_ |j dk rT|j n|j }d||_ ||tj }t j dkrd|krtj d}nt j}tjjtjj|\}}||_||_||_t j dkrd } d } tjj|d d } n(d } d} tjj|ddt jddd } tjj|| |_} || || t jdkr|tjdkr|t j dkr|tjj|d} tjj| s|tjd| tjj|| |_}| |_tjj|||_|||S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. cSs@tjj|stj|n$tjj|s0tjj|r.create_if_neededNz(%s) darwin__PYVENV_LAUNCHER__Zwin32ZScriptsZIncludeLibz site-packagesbinincludelibz python%d.%d posixlib64l)r rr"rr!typesSimpleNamespacersplitenv_namerenvironsysplatform executabler python_dirZ python_exer version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)r rr&rrenvr9dirnameZexenameZbinnameZincpathZlibpathrZ link_pathbinpathr r r rVsN       zEnvBuilder.ensure_directoriesc Csztjj|jd|_}t|dddL}|jd|j|jrBd}nd}|jd||jd t j d d Wd QRXd S) aA Create a configuration file indicating where the environment's Python was copied from, and whether the system site-packages should be made available in the environment. :param context: The information for the environment creation request being processed. z pyvenv.cfgwzutf-8)encodingz home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d N) r rrrZcfg_pathopenwriter:rr7r;)r rrfZinclr r r rs zEnvBuilder.create_configurationntcCs(|jdrd}n|jdo"|jd}|S)N.pyd.dllTpythonz.exe)rMrN)endswith startswith)r rKresultr r r include_binarys zEnvBuilder.include_binaryc Cs~|j }|sjy6tjj|s@|r4tjtjj||n tj||Wn&tk rhtjd||d}YnX|rzt j ||dS)zQ Try symlinking a file, and if that fails, fall back to copying. zUnable to symlink %r to %rTN) rr rrr>basename Exceptionloggerwarningrcopyfile)r srcdstrelative_symlinks_okZ force_copyr r r symlink_or_copys  zEnvBuilder.symlink_or_copycs|j}|j}|j}||j||j}tjdkrtjj|sFtj |dxNdD]F}tjj ||}tjj |sL||j|ddtjj|sLtj |dqLWnRd}|j fdd tj |D}x<|D]4} tjj || } tjj || } | |jkr|| | qWtjj ||}tjj|rdfd d tj |D}x4|D],} tjj || } tjj || } || | q4Wxtj|jD]v\} } }d |krrtjj| }tjj |jd |}tjj |stj|tjj | d } tjj |d } tj| | PqrWd S)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rLirOpython3T)r[ZDLLscsg|]}|r|qSr r ).0rK)r,r r sz+EnvBuilder.setup_python..csg|]}|r|qSr r )r^rK)r,r r r_szinit.tclr*N)rOr])r?rAr\r9r:r r=rrchmodrr"rSrrwalkrTrr#rrX)r rrDrZcopierrCsuffixZsubdirfilesrKrYrZrootdirsZtcldirr )r,r rsN              zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepipz --upgradez --default-pip)stderrN)rA subprocessZ check_outputZSTDOUT)r rcmdr r r rs zEnvBuilder._setup_pipcCs2tjjtjjt}tjj|d}|j||dS)a Set up scripts into the created environment from a directory. This method installs the default scripts into the environment being created. You can prevent the default installation by overriding this method if you really need to, or if you need to specify a different location for the scripts to install. By default, the 'scripts' directory in the venv package is used as the source of scripts to install. scriptsN)r rrrC__file__rinstall_scripts)r rrr r r rs zEnvBuilder.setup_scriptscCsdS)a Hook for post-setup modification of the venv. Subclasses may install additional packages or scripts here, add activation shell scripts, etc. :param context: The information for the environment creation request being processed. Nr )r rr r r rszEnvBuilder.post_setupc s|j|j|j|j|jd}dd}dd}tj|j}|jdrF|n|jdrV|ntjfdd |j D}x |j D]\}}|j ||}q|W|S) ai Replace variable placeholders in script text with context-specific variables. Return the text passed in , but with variables replaced. :param text: The text in which to replace placeholder variables. :param context: The information for the environment creation request being processed. )Z __VENV_DIR__Z __VENV_NAME__Z__VENV_PROMPT__Z__VENV_BIN_NAME__Z__VENV_PYTHON__cSs|jdd}d|dS)a This should satisfy PowerShell quoting rules [1], unless the quoted string is passed directly to Windows native commands [2]. [1]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules [2]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_parsing#passing-arguments-that-contain-quote-characters 'z'')replace)sr r r quote_ps1$s z/EnvBuilder.replace_variables..quote_ps1cSs|S)Nr )rnr r r quote_bat.sz/EnvBuilder.replace_variables..quote_batz.ps1z.batcsi|]\}}||qSr r )r^keyrn)quoter r <sz0EnvBuilder.replace_variables..) rr5rr@rAshlexrr script_pathrPitemsrm) r textrZ replacementsrorprurqZquotedr )rrr replace_variabless$     zEnvBuilder.replace_variablesc!Cs|j}t|}xtj|D]~\}}}||kr`x,|ddD]}|dtjfkr>|j|q>Wqx8|D].} tjj|| } ||djtj dd} | s|} ntjj|f| } tjj | stj | tjj| | } t | d} | j }WdQRX| jdsd| |_y$|jd}|j||}|jd}Wn6tk rb}zd}tjd| |WYdd}~XnX|dk rht | d} | j|WdQRXtj| | qhWqWdS) as Install scripts into the created environment from a directory. :param context: The information for the environment creation request being processed. :param path: Absolute pathname of a directory containing script. Scripts in the 'common' subdirectory of this directory, and those in the directory named for the platform being run on, are installed in the created environment. Placeholder variables are replaced with environment- specific values. Ncommonr.rbz.exezutf-8z+unable to copy script %r, may be binary: %swb)r?lenr rar=rrrr4sepr"r#rIreadrPrudecoderxencode UnicodeErrorrVrWrJrZcopymode)r rrrDZplenrdrercr%rKZsrcfilerbZdstdirZdstfiledataer r r rkAsB        zEnvBuilder.install_scripts)FFFFFN)F)__name__ __module__ __qualname____doc__r rr!rrr r=rSr\rrrrrxrkr r r r rs  8  3  0rFcCs t|||||d}|j|dS)z,Create a virtual environment in a directory.)rrrrrN)rr)rrrrrrbuilderr r r rrsrc Csbd}tjd*krd}nttds"d}|s2tdn,ddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}|j }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'|j |}|j r"|j r"td(t|j|j |j|j |j|jd)}x|jD]}|j|qJWdS)+NTrHF base_prefixz.This script is only for use with Python >= 3.3rzFCreates virtual Python environments in one or more target directories.z|Once an environment has been created, you may wish to activate it, e.g. by sourcing an activate script in its bin directory.)progZ descriptionZepilogreZENV_DIR+z)A directory to create the environment in.)metavarnargshelpz--system-site-packages store_true system_sitezDGive the virtual environment access to the system site-packages dir.)defaultactiondestrrLz --symlinksrz[Try to use symlinks rather than copies, when symlinks are not the default for the platform.z--copiesZ store_falsez\Try to use copies rather than symlinks, even when symlinks are the default for the platform.z--clearrzcDelete the contents of the environment directory if it already exists, before environment creation.z --upgraderzlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.z --without-piprz]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rz1you cannot supply --upgrade and --clear together.)rrrrrr)rHrH)r7r;hasattrr$argparseArgumentParserr add_argumentr r=Zadd_mutually_exclusive_group parse_argsrrrrrrrrer) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr%r r r mainzs\             r__main__r'z Error: %s)file)FFFFN)N)rZloggingr rrgr7r2rtZ getLoggerrrVrrrZrcrUrprintrfexitr r r r s, b  H$PKj#]{CC)__pycache__/__main__.cpython-36.opt-1.pycnu[3 \@sjddlZddlmZdZyedZWn4ek rZZzedeejdWYddZ[XnXejedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r %/usr/lib64/python3.6/venv/__main__.pys $PKj#]W'')__pycache__/__init__.cpython-36.opt-2.pycnu[3 iqM@sddlZddlZddlZddlZddlZddlZddlZejeZ GdddZ d ddZ dddZ ed krd Z ye dZ Wn4ek rZzed eejd WYddZ[XnXeje dS)Nc@seZdZdddZddZddZd d Zd d Zej d krDddZ dddZ ddZ ddZ ddZddZddZddZdS) EnvBuilderFNcCs(||_||_||_||_||_||_dS)N)system_site_packagesclearsymlinksupgradewith_pipprompt)selfrrrrrrr %/usr/lib64/python3.6/venv/__init__.py__init__+s zEnvBuilder.__init__cCsxtjj|}|j|}|j}d|_|j||j||jrF|j||j s`|j ||j ||rtd|_|j|dS)NFT) ospathabspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setup)r env_dircontextZtrue_system_site_packagesr r r create4s       zEnvBuilder.createcCs`xZtj|D]L}tjj||}tjj|s6tjj|rBtj|q tjj|r tj |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryNs   zEnvBuilder.clear_directorycCsdd}tjj|r$|jr$|j|tj}||_tjj|d|_ |j dk rT|j n|j }d||_ ||tj }t j dkrd|krtj d}nt j}tjjtjj|\}}||_||_||_t j dkrd} d } tjj|d d } n(d } d } tjj|ddt jddd } tjj|| |_} || || t jdkr|tjdkr|t j dkr|tjj|d} tjj| s|tjd| tjj|| |_}| |_tjj|||_|||S)NcSs@tjj|stj|n$tjj|s0tjj|r.create_if_neededz(%s) darwin__PYVENV_LAUNCHER__Zwin32ZScriptsZIncludeLibz site-packagesbinincludelibz python%d.%d posixlib64l)r rr"rr!typesSimpleNamespacersplitenv_namerenvironsysplatform executabler python_dirZ python_exer version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)r rr&rrenvr9dirnameZexenameZbinnameZincpathZlibpathrZ link_pathbinpathr r r rVsN       zEnvBuilder.ensure_directoriesc Csztjj|jd|_}t|dddL}|jd|j|jrBd}nd}|jd||jd t j dd WdQRXdS) Nz pyvenv.cfgwzutf-8)encodingz home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d ) r rrrZcfg_pathopenwriter:rr7r;)r rrfZinclr r r rs zEnvBuilder.create_configurationntcCs(|jdrd}n|jdo"|jd}|S)N.pyd.dllTpythonz.exe)rMrN)endswith startswith)r rKresultr r r include_binarys zEnvBuilder.include_binaryc Cs~|j }|sjy6tjj|s@|r4tjtjj||n tj||Wn&tk rhtjd||d}YnX|rzt j ||dS)NzUnable to symlink %r to %rT) rr rrr>basename Exceptionloggerwarningrcopyfile)r srcdstrelative_symlinks_okZ force_copyr r r symlink_or_copys  zEnvBuilder.symlink_or_copycs|j}|j}|j}||j||j}tjdkrtjj|sFtj |dxNd D]F}tjj ||}tjj |sL||j|ddtjj|sLtj |dqLWnRd}|j fdd tj |D}x<|D]4} tjj || } tjj || } | |jkr|| | qWtjj ||}tjj|rdfd d tj |D}x4|D],} tjj || } tjj || } || | q4Wxtj|jD]v\} } }d |krrtjj| }tjj |jd |}tjj |stj|tjj | d } tjj |d } tj| | PqrWdS)NrLirOpython3T)r[ZDLLscsg|]}|r|qSr r ).0rK)r,r r sz+EnvBuilder.setup_python..csg|]}|r|qSr r )r^rK)r,r r r_szinit.tclr*)rOr])r?rAr\r9r:r r=rrchmodrr"rSrrwalkrTrr#rrX)r rrDrZcopierrCsuffixZsubdirfilesrKrYrZrootdirsZtcldirr )r,r rsN              zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)Nz-ImZ ensurepipz --upgradez --default-pip)stderr)rA subprocessZ check_outputZSTDOUT)r rcmdr r r rs zEnvBuilder._setup_pipcCs2tjjtjjt}tjj|d}|j||dS)Nscripts)r rrrC__file__rinstall_scripts)r rrr r r rs zEnvBuilder.setup_scriptscCsdS)Nr )r rr r r rszEnvBuilder.post_setupc s|j|j|j|j|jd}dd}dd}tj|j}|jdrF|n|jdrV|ntjfdd |j D}x |j D]\}}|j ||}q|W|S) N)Z __VENV_DIR__Z __VENV_NAME__Z__VENV_PROMPT__Z__VENV_BIN_NAME__Z__VENV_PYTHON__cSs|jdd}d|dS)N'z'')replace)sr r r quote_ps1$s z/EnvBuilder.replace_variables..quote_ps1cSs|S)Nr )rnr r r quote_bat.sz/EnvBuilder.replace_variables..quote_batz.ps1z.batcsi|]\}}||qSr r )r^keyrn)quoter r <sz0EnvBuilder.replace_variables..) rr5rr@rAshlexrr script_pathrPitemsrm) r textrZ replacementsrorprurqZquotedr )rrr replace_variabless$     zEnvBuilder.replace_variablesc!Cs|j}t|}xtj|D]~\}}}||kr`x,|ddD]}|dtjfkr>|j|q>Wqx8|D].} tjj|| } ||djtj dd} | s|} ntjj|f| } tjj | stj | tjj| | } t | d} | j }WdQRX| jdsd| |_y$|jd}|j||}|jd}Wn6tk rb}zd}tjd| |WYdd}~XnX|dk rht | d} | j|WdQRXtj| | qhWqWdS)Ncommonr.rbz.exezutf-8z+unable to copy script %r, may be binary: %swb)r?lenr rar=rrrr4sepr"r#rIreadrPrudecoderxencode UnicodeErrorrVrWrJrZcopymode)r rrrDZplenrdrercr%rKZsrcfilerbZdstdirZdstfiledataer r r rkAsB        zEnvBuilder.install_scripts)FFFFFN)F)__name__ __module__ __qualname__r rr!rrr r=rSr\rrrrrxrkr r r r rs 8  3  0rFcCs t|||||d}|j|dS)N)rrrrr)rr)rrrrrrbuilderr r r rrsrc Csbd}tjd*krd}nttds"d}|s2tdn,ddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}|j }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'|j |}|j r"|j r"td(t|j|j |j|j |j|jd)}x|jD]}|j|qJWdS)+NTrHF base_prefixz.This script is only for use with Python >= 3.3rzFCreates virtual Python environments in one or more target directories.z|Once an environment has been created, you may wish to activate it, e.g. by sourcing an activate script in its bin directory.)progZ descriptionZepilogreZENV_DIR+z)A directory to create the environment in.)metavarnargshelpz--system-site-packages store_true system_sitezDGive the virtual environment access to the system site-packages dir.)defaultactiondestrrLz --symlinksrz[Try to use symlinks rather than copies, when symlinks are not the default for the platform.z--copiesZ store_falsez\Try to use copies rather than symlinks, even when symlinks are the default for the platform.z--clearrzcDelete the contents of the environment directory if it already exists, before environment creation.z --upgraderzlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.z --without-piprz]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rz1you cannot supply --upgrade and --clear together.)rrrrrr)rHrH)r7r;hasattrr$argparseArgumentParserr add_argumentr r=Zadd_mutually_exclusive_group parse_argsrrrrrrrrer) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr%r r r mainzs\             r__main__r'z Error: %s)file)FFFFN)N)Zloggingr rrgr7r2rtZ getLoggerrrVrrrZrcrUrprintrfexitr r r r s* b  H$PKj#]{CC#__pycache__/__main__.cpython-36.pycnu[3 \@sjddlZddlmZdZyedZWn4ek rZZzedeejdWYddZ[XnXejedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r %/usr/lib64/python3.6/venv/__main__.pys $PKj#]{CC)__pycache__/__main__.cpython-36.opt-2.pycnu[3 \@sjddlZddlmZdZyedZWn4ek rZZzedeejdWYddZ[XnXejedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r %/usr/lib64/python3.6/venv/__main__.pys $PKn#]F8kI#I#scripts/common/Activate.ps1nu[<# .Synopsis Activate a Python virtual environment for the current PowerShell session. .Description Pushes the python executable for a virtual environment to the front of the $Env:PATH environment variable and sets the prompt to signify that you are in a Python virtual environment. Makes use of the command line switches as well as the `pyvenv.cfg` file values present in the virtual environment. .Parameter VenvDir Path to the directory that contains the virtual environment to activate. The default value for this is the parent of the directory that the Activate.ps1 script is located within. .Parameter Prompt The prompt prefix to display when this virtual environment is activated. By default, this prompt is the name of the virtual environment folder (VenvDir) surrounded by parentheses and followed by a single space (ie. '(.venv) '). .Example Activate.ps1 Activates the Python virtual environment that contains the Activate.ps1 script. .Example Activate.ps1 -Verbose Activates the Python virtual environment that contains the Activate.ps1 script, and shows extra information about the activation as it executes. .Example Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv Activates the Python virtual environment located in the specified location. .Example Activate.ps1 -Prompt "MyPython" Activates the Python virtual environment that contains the Activate.ps1 script, and prefixes the current prompt with the specified string (surrounded in parentheses) while the virtual environment is active. .Notes On Windows, it may be required to enable this Activate.ps1 script by setting the execution policy for the user. You can do this by issuing the following PowerShell command: PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser For more information on Execution Policies: https://go.microsoft.com/fwlink/?LinkID=135170 #> Param( [Parameter(Mandatory = $false)] [String] $VenvDir, [Parameter(Mandatory = $false)] [String] $Prompt ) <# Function declarations --------------------------------------------------- #> <# .Synopsis Remove all shell session elements added by the Activate script, including the addition of the virtual environment's Python executable from the beginning of the PATH variable. .Parameter NonDestructive If present, do not remove this function from the global namespace for the session. #> function global:deactivate ([switch]$NonDestructive) { # Revert to original values # The prior prompt: if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT } # The prior PYTHONHOME: if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME } # The prior PATH: if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH Remove-Item -Path Env:_OLD_VIRTUAL_PATH } # Just remove the VIRTUAL_ENV altogether: if (Test-Path -Path Env:VIRTUAL_ENV) { Remove-Item -Path env:VIRTUAL_ENV } # Just remove VIRTUAL_ENV_PROMPT altogether. if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { Remove-Item -Path env:VIRTUAL_ENV_PROMPT } # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force } # Leave deactivate function in the global namespace if requested: if (-not $NonDestructive) { Remove-Item -Path function:deactivate } } <# .Description Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the given folder, and returns them in a map. For each line in the pyvenv.cfg file, if that line can be parsed into exactly two strings separated by `=` (with any amount of whitespace surrounding the =) then it is considered a `key = value` line. The left hand string is the key, the right hand is the value. If the value starts with a `'` or a `"` then the first and last character is stripped from the value before being captured. .Parameter ConfigDir Path to the directory that contains the `pyvenv.cfg` file. #> function Get-PyVenvConfig( [String] $ConfigDir ) { Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue # An empty map will be returned if no config file is found. $pyvenvConfig = @{ } if ($pyvenvConfigPath) { Write-Verbose "File exists, parse `key = value` lines" $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath $pyvenvConfigContent | ForEach-Object { $keyval = $PSItem -split "\s*=\s*", 2 if ($keyval[0] -and $keyval[1]) { $val = $keyval[1] # Remove extraneous quotations around a string value. if ("'""".Contains($val.Substring(0, 1))) { $val = $val.Substring(1, $val.Length - 2) } $pyvenvConfig[$keyval[0]] = $val Write-Verbose "Adding Key: '$($keyval[0])'='$val'" } } } return $pyvenvConfig } <# Begin Activate script --------------------------------------------------- #> # Determine the containing directory of this script $VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition $VenvExecDir = Get-Item -Path $VenvExecPath Write-Verbose "Activation script is located in path: '$VenvExecPath'" Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" # Set values required in priority: CmdLine, ConfigFile, Default # First, get the location of the virtual environment, it might not be # VenvExecDir if specified on the command line. if ($VenvDir) { Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" } else { Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") Write-Verbose "VenvDir=$VenvDir" } # Next, read the `pyvenv.cfg` file to determine any required value such # as `prompt`. $pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir # Next, set the prompt from the command line, or the config file, or # just use the name of the virtual environment folder. if ($Prompt) { Write-Verbose "Prompt specified as argument, using '$Prompt'" } else { Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" if ($pyvenvCfg -and $pyvenvCfg['prompt']) { Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" $Prompt = $pyvenvCfg['prompt']; } else { Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" $Prompt = Split-Path -Path $venvDir -Leaf } } Write-Verbose "Prompt = '$Prompt'" Write-Verbose "VenvDir='$VenvDir'" # Deactivate any currently active virtual environment, but leave the # deactivate function in place. deactivate -nondestructive # Now set the environment variable VIRTUAL_ENV, used by many tools to determine # that there is an activated venv. $env:VIRTUAL_ENV = $VenvDir if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { Write-Verbose "Setting prompt to '$Prompt'" # Set the prompt to include the env name # Make sure _OLD_VIRTUAL_PROMPT is global function global:_OLD_VIRTUAL_PROMPT { "" } Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt function global:prompt { Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " _OLD_VIRTUAL_PROMPT } $env:VIRTUAL_ENV_PROMPT = $Prompt } # Clear PYTHONHOME if (Test-Path -Path Env:PYTHONHOME) { Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME Remove-Item -Path Env:PYTHONHOME } # Add the venv to the PATH Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH $Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" PKn#]\Q;z;z$__pycache__/__init__.cpython-312.pycnu[ Th~h2dZddlZddlZddlZddlZddlZddlZddlZddlZdZ eje Z GddZ d dZd dZe dk(rd Z edZej*eyy#e$r!Zed ezej( YdZ[5dZ[wwxYw)z Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. N)pipceZdZdZ ddZdZdZdZedZ dZ d Z e jd k7rdd Zndd Zd ZdZdZdZdZdZdZdZy) EnvBuildera This class exists to allow virtual environment creation to be customized. The constructor parameters determine the builder's behaviour when called upon to create a virtual environment. By default, the builder makes the system (global) site-packages dir *un*available to the created environment. If invoked using the Python -m option, the default is to use copying on Windows platforms but symlinks elsewhere. If instantiated some other way, the default is to *not* use symlinks. :param system_site_packages: If True, the system (global) site-packages dir is available to created environments. :param clear: If True, delete the contents of the environment directory if it already exists, before environment creation. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param upgrade: If True, upgrade an existing virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment :param prompt: Alternative terminal prefix for the environment. :param upgrade_deps: Update the base venv modules to the latest on PyPI Nc||_||_||_||_||_||_|dk(r1t jjt j}||_ ||_ y)N.) system_site_packagesclearsymlinksupgradewith_pip orig_promptospathbasenamegetcwdprompt upgrade_deps)selfrr r r r rrs &/usr/lib64/python3.12/venv/__init__.py__init__zEnvBuilder.__init__/s`%9!      ! S=WW%%biik2F (ctjj|}|j|}|j}d|_|j ||j ||jr|j||js"|j||j||rd|_|j ||jr|j|yy)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN)rrabspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontexttrue_system_site_packagess rcreatezEnvBuilder.create=s''//'*))'2%)$=$=!$)! !!'* '" == OOG $||   w ' OOG $ $)-D %  % %g .     % %g . rctj|D]}tjj||}tjj |stjj |rtj |wtjj|stj|yN) rlistdirrjoinislinkisfileremoveisdirshutilrmtree)rrfns rclear_directoryzEnvBuilder.clear_directoryYso**T"BdB'Bww~~b!RWW^^B%7 " r" b! #rc@||||d}tj|d|S)N)baseplatbaseinstalled_baseinstalled_platbasevenv)schemevars) sysconfigget_path)rr!namer8s r _venv_pathzEnvBuilder._venv_pathas,%")   !!$vDAArc tjdk(rtjj |tjj |k(ryddl} |j tj|} |j tj|}tjj |tjj |k(ryy||k(S#t$rYvwxYw#t$rY`wxYw)zCheck whether two paths appear the same. Whether they refer to the same file is irrelevant; we're testing for whether a human reader would look at the path string and easily tell that they're the same file. win32TrNF) sysplatformrrnormcase_winapiGetLongPathNamefsdecodeOSError)clspath1path2rBs r _same_pathzEnvBuilder._same_pathjs <<7 "ww&"''*:*:5*AA  // E0BC // E0BCww&"''*:*:5*AAE> !    s$$C(>$C7( C43C47 DDcxd}tjtj|vr td|dtjdtjj |r|j r|j|tj}||_ tjj|d|_ |j |jn |j}d|z|_ ||tj}|s tdtjjtjj!|\}}||_||_||_|j)|d}|j)|d } |j)|d } | |_|| | |_|| tj.d kDr{tj0d k(rhtj2d k7rUtjj5|d} tjj | stj6d| ||_tjj;|||_tjj5|||_|||j>|_ tj2dk(rmtjjC|j>} |jE| |j>s(tFjId|j>| | |_ |S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. ctjj|stj|ytjj |stjj |rt d|zy)NzUnable to create directory %r)rrexistsmakedirsr)r* ValueError)ds rcreate_if_neededz7EnvBuilder.ensure_directories..create_if_neededsR77>>!$ A"bggnnQ&7 !@1!DEE'8rzRefusing to create a venv in z( because it contains the PATH separator rz(%s) zUnable to determine path to the running Python interpreter. Provide an explicit path or check that your PATH environment variable is correctly set.scriptsincludepureliblposixdarwinlib64libr>zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s")%rpathsepfspathrNrrLr r0typesSimpleNamespacer!splitenv_namerr?_base_executabler executable python_dir python_exer<inc_pathlib_pathmaxsizer;r@r(symlinkbin_pathrelpathbin_nameenv_exe env_exec_cmdrealpathrIloggerwarning) rr!rPr"rr`dirnameexenamebinpathincpathlibpath link_path real_env_exes rrzEnvBuilder.ensure_directoriess~ F ::7+ +>' "tzz   )'')!77==1!4 $ 7W=M=M 6)!)) ./ /77==)DE'$$//'95//'95//'95"!"! [[5 rww''9 \\X % Wg6I77>>), 5),"77??7G<'',,w8! ' <<7 "77++GOO (4$rctjj|jdx|_}t |dd5}|j d|jz|jrd}nd}|j d|z|j d tjd d z|j|j d |jd |j dtjjtjzg}tjdk(}|r|jr|j!d|s|js|j!d|j"s|j!d|jr|j!d|j$r|j!d|j&r|j!d|j(r|j!d|j*|j!d|j*d|j!|jdj|}|j dtjd|d d d d y #1swYy xYw)aA Create a configuration file indicating where the environment's Python was copied from, and whether the system site-packages should be made available in the environment. :param context: The information for the environment creation request being processed. z pyvenv.cfgwutf-8)encodingz home = %s truefalsez"include-system-site-packages = %s zversion = %d.%d.%d Nz prompt =  zexecutable = %s nt --symlinks--copies --without-pip--system-site-packages--clear --upgrade--upgrade-depsz --prompt="" z command = z -m venv )rrr(r!cfg_pathopenwriterarr? version_inforrlr`r;r appendr r r rr )rr"rfinclargsr~s rrzEnvBuilder.create_configurations#%'',,w "MM4 $g .! GGMG$6$66 7(( GG9D@ A GG*S-=-=bq-AA B{{&)DKK?"56 GG'"''*:*:3>>*JJ KDDBdmm L)dmm J'== O,(( 45zz I&|| K(   ,-+ j)9)9(:!<= KK (88D>D GGj 0 $rB CA/ . .s H4I==Jr~c|j }|s tjj|s|rutjj |tjj |k(sJtj tjj ||ntj |||rtj||yy#t$rtjd||d}Y>wxYw)Y Try symlinking a file, and if that fails, fall back to copying. Unable to symlink %r to %rTN) r rrr)rorfr Exceptionrmrnr-copyfile)rsrcdstrelative_symlinks_ok force_copys rsymlink_or_copyzEnvBuilder.symlink_or_copys"]]*J &77>>#./#%77??3#7277??3;O#OO#OJJrww'7'7'>#3F/FG}}WRWW^^C5HK+!wws3rwws7KKKK 277#3#3C#8#> 3, GG,,RWW-=-=c-BCMHcGGLL!:!*!%!)C1E ((*"''..2G$$T**C'}Hx'-H*.Hggll277??3#7CH77>>#&NN#6< OOC %9!KNN#?cJKs0A6I2'I22 JJc|j}|j}|j}|j}tj dk7r||j |tjj|st j|ddddtjdfD]}tjj||}tjj|rC||j|dtjj|rxt j|dy|jrt j|Dcgc]E}tjj!tjj#|dd vr|G}}t%j&r||Dcgc]2}tjj!|j)d r|4}}n>hd }tjj+|j} |j-| |D]i}tjj||} tjj/| sC|| tjj||kt%j&rt j0|jD]\} } } d | vs tjj+| }tjj|j2d |}tjj|st j4|tjj| d } tjj|d }t7j8| |yyycc}wcc}w)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. r~irpython3zpython3.rQT)r).exez.dll)r vcruntime> python.exe pythonw.exe python_d.exe pythonw_d.exezinit.tclLibN)rgrjrrarr;r`rr)chmodr?rr(rLr r'rArr9r startswithraddrwalkr!rMr-r)rr"rqrcopierrosuffixrsuffixesbase_exerrootdirsfilestcldirrs rrzEnvBuilder.setup_python5s""%%$$ 77d? 7%%t ,77>>$'u%#Y(3;K;KA;N:O0PQww||GV4ww~~d+7??DtL77>>$/u-R}} "zz'22!GG$$RWW%5%5a%8%;<@PP2,,.#+ #+a((+667NO8  Z77++GOO< X&"ggll7F377??3'3 Wf =># ((*)+1C1C)D%D$!U*!#!1!1$!7!#goouf!M!ww~~f5KK/ ggll4< ggll6:>S1*E+'  s A N<=7Oc6|jg|}tjjx|d<}|j|d<|j dd|j dd|j|d<|j|d<t j|fi|y)z8Executes the newly created Python using safe-ish optionsenv VIRTUAL_ENV PYTHONHOMEN PYTHONPATHcwdr`)rkrenvironcopyr!pop subprocess check_output)rr"py_argskwargsrrs r_call_new_pythonzEnvBuilder._call_new_pythonrs $$/w/ jjoo//u $__M  d#  d#u &33|//rcN|j|ddddtjy)z1Installs or upgrades pip in a virtual environment-m ensurepiprz --default-pip)stderrN)rrSTDOUTrr"s rrzEnvBuilder._setup_pips) gt[+-j6G6G  Irctjjtjjt}tjj |d}|j ||y)a Set up scripts into the created environment from a directory. This method installs the default scripts into the environment being created. You can prevent the default installation by overriding this method if you really need to, or if you need to specify a different location for the scripts to install. By default, the 'scripts' directory in the venv package is used as the source of scripts to install. rRN)rrrrorr(install_scripts)rr"rs rrzEnvBuilder.setup_scriptssGwwrwwx89ww||D), Wd+rcy)a Hook for post-setup modification of the venv. Subclasses may install additional packages or scripts here, add activation shell scripts, etc. :param context: The information for the environment creation request being processed. Nrs rrzEnvBuilder.post_setups rc|j|j|j|j|jd}d}d}t j }|j}|jdr|}n$|jdr|}nt j }|jD cic]\}} ||| }}} |jD]\}} |j|| }|Scc} }w)ai Replace variable placeholders in script text with context-specific variables. Return the text passed in , but with variables replaced. :param text: The text in which to replace placeholder variables. :param context: The information for the environment creation request being processed. ) __VENV_DIR__ __VENV_NAME____VENV_PROMPT____VENV_BIN_NAME____VENV_PYTHON__c2|jdd}d|dS)a This should satisfy PowerShell quoting rules [1], unless the quoted string is passed directly to Windows native commands [2]. [1]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules [2]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_parsing#passing-arguments-that-contain-quote-characters 'z'')replacess r quote_ps1z/EnvBuilder.replace_variables..quote_ps1s! #t$Aqc8Orc|Sr&rrs r quote_batz/EnvBuilder.replace_variables..quote_batsHrz.ps1z.bat) r!r^rrirjshlexquote script_pathritemsr) rtextr" replacementsrrrrkeyrquoteds rreplace_variableszEnvBuilder.replace_variabless$OO$--&~~!(!1!1&     ))    'E  ! !& )EKKE4@4F4F4HI4H&#qU1X 4H I'--/KC<<V,D0 Js(C*c|j}t|}tj|D]\}}}||k(r1|ddD](}|dtjfvs|j |*>|D]} tjdk(r#| j dr| jdr:tjj|| } ||djtjdd} | s|} n tjj|g| } tjj| stj| tjj| | } t| d5} | j}ddd| jds<| |_ j#d}|j%||}|j'd}nt| d 5} | j/|dddt1j2| | y#1swYxYw#t($r#}d}t*j-d | |Yd}~zd}~wwxYw#1swYaxYw) as Install scripts into the created environment from a directory. :param context: The information for the environment creation request being processed. :param path: Absolute pathname of a directory containing script. Scripts in the 'common' subdirectory of this directory, and those in the directory named for the platform being run on, are installed in the created environment. Placeholder variables are replaced with environment- specific values. Ncommonr~r)rz.pdbrbrxz+unable to copy script %r, may be binary: %swb)rglenrrr;r+rrrr(r]seprLrMrreadrdecoderencode UnicodeErrorrmrnrr-copymode)rr"rrqplenrrrrOrsrcfilerdstdirdstfiledataes rrzEnvBuilder.install_scriptss""4y!# D$t|aA277 33 A!GGtO X(>JJ'78'',,tQ/de**2662126$FWW\\';F;Fww~~f-KK''',,vq1'4(A668D)''(89*1G'H#{{73#55dGD#{{73 #gt, -OOGW59 "/&)((H#(;%G7==LMMg.A.A&}}")"2"2!(")"2"2 '&-&:&: r*s       8 $r/r/j7rsU ,F B  , +/ ++,s *AA  APKn#]pee*__pycache__/__init__.cpython-312.opt-2.pycnu[ Th~h0 ddlZddlZddlZddlZddlZddlZddlZddlZdZeje Z GddZ d dZ d dZe dk(rdZ edZej(eyy#e$r!Zed ezej& YdZ[5dZ[wwxYw) N)pipceZdZ ddZdZdZdZedZdZ dZ e jd k7rdd Z ndd Z d Zd ZdZdZdZdZdZdZy) EnvBuilderNc||_||_||_||_||_||_|dk(r1t jjt j}||_ ||_ y)N.) system_site_packagesclearsymlinksupgradewith_pip orig_promptospathbasenamegetcwdprompt upgrade_deps)selfrr r r r rrs &/usr/lib64/python3.12/venv/__init__.py__init__zEnvBuilder.__init__/s`%9!      ! S=WW%%biik2F (c tjj|}|j|}|j}d|_|j ||j ||jr|j||js"|j||j||rd|_|j ||jr|j|yy)NFT)rrabspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontexttrue_system_site_packagess rcreatezEnvBuilder.create=s ''//'*))'2%)$=$=!$)! !!'* '" == OOG $||   w ' OOG $ $)-D %  % %g .     % %g . rctj|D]}tjj||}tjj |stjj |rtj |wtjj|stj|yN) rlistdirrjoinislinkisfileremoveisdirshutilrmtree)rrfns rclear_directoryzEnvBuilder.clear_directoryYso**T"BdB'Bww~~b!RWW^^B%7 " r" b! #rc@||||d}tj|d|S)N)baseplatbaseinstalled_baseinstalled_platbasevenv)schemevars) sysconfigget_path)rr!namer8s r _venv_pathzEnvBuilder._venv_pathas,%")   !!$vDAArc tjdk(rtjj |tjj |k(ryddl} |j tj|} |j tj|}tjj |tjj |k(ryy||k(S#t$rYvwxYw#t$rY`wxYw)Nwin32TrF) sysplatformrrnormcase_winapiGetLongPathNamefsdecodeOSError)clspath1path2rBs r _same_pathzEnvBuilder._same_pathjs <<7 "ww&"''*:*:5*AA  // E0BC // E0BCww&"''*:*:5*AAE> !    s$$C)?$C8) C54C58 DDcz d}tjtj|vr td|dtjdtjj |r|j r|j|tj}||_ tjj|d|_ |j |jn |j}d|z|_ ||tj}|s tdtjjtjj!|\}}||_||_||_|j)|d}|j)|d } |j)|d } | |_|| | |_|| tj.d kDr{tj0d k(rhtj2d k7rUtjj5|d} tjj | stj6d| ||_tjj;|||_tjj5|||_|||j>|_ tj2dk(rmtjjC|j>} |jE| |j>s(tFjId|j>| | |_ |S)Nctjj|stj|ytjj |stjj |rt d|zy)NzUnable to create directory %r)rrexistsmakedirsr)r* ValueError)ds rcreate_if_neededz7EnvBuilder.ensure_directories..create_if_neededsR77>>!$ A"bggnnQ&7 !@1!DEE'8rzRefusing to create a venv in z( because it contains the PATH separator rz(%s) zUnable to determine path to the running Python interpreter. Provide an explicit path or check that your PATH environment variable is correctly set.scriptsincludepureliblposixdarwinlib64libr>zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s")%rpathsepfspathrNrrLr r0typesSimpleNamespacer!splitenv_namerr?_base_executabler executable python_dir python_exer<inc_pathlib_pathmaxsizer;r@r(symlinkbin_pathrelpathbin_nameenv_exe env_exec_cmdrealpathrIloggerwarning) rr!rPr"rr`dirnameexenamebinpathincpathlibpath link_path real_env_exes rrzEnvBuilder.ensure_directoriess  F ::7+ +>' "tzz   )'')!77==1!4 $ 7W=M=M 6)!)) ./ /77==)DE'$$//'95//'95//'95"!"! [[5 rww''9 \\X % Wg6I77>>), 5),"77??7G<'',,w8! ' <<7 "77++GOO (4$rc tjj|jdx|_}t |dd5}|j d|jz|jrd}nd}|j d|z|j d tjdd z|j|j d |jd |j d tjjtjzg}tjdk(}|r|jr|j!d|s|js|j!d|j"s|j!d|jr|j!d|j$r|j!d|j&r|j!d|j(r|j!d|j*|j!d|j*d|j!|jdj|}|j dtjd|d dddy#1swYyxYw)Nz pyvenv.cfgwutf-8)encodingz home = %s truefalsez"include-system-site-packages = %s zversion = %d.%d.%d z prompt =  zexecutable = %s nt --symlinks--copies --without-pip--system-site-packages--clear --upgrade--upgrade-depsz --prompt="" z command = z -m venv )rrr(r!cfg_pathopenwriterarr? version_inforrlr`r;r appendr r r rr )rr"rfinclargsr~s rrzEnvBuilder.create_configurations #%'',,w "MM4 $g .! GGMG$6$66 7(( GG9D@ A GG*S-=-=bq-AA B{{&)DKK?"56 GG'"''*:*:3>>*JJ KDDBdmm L)dmm J'== O,(( 45zz I&|| K(   ,-+ j)9)9(:!<= KK (88D>D GGj 0 $rB CA/ . .s H4I>>Jr~c~ |j }|sl tjj|sL|r4tjtjj ||ntj|||rtj||yy#t $rtjd||d}Y>wxYw)NUnable to symlink %r to %rT) r rrr)rfr Exceptionrmrnr-copyfile)rsrcdstrelative_symlinks_ok force_copys rsymlink_or_copyzEnvBuilder.symlink_or_copys "]]*J &77>>#./JJrww'7'7'>#3F/FG}}WRWW^^C5HK+ 277#3#3C#8#> 3, GG,,RWW-=-=c-BCMHcGGLL!:!*!%!)C1E ((*"''..2G$$T**C'}Hx'-H*.Hggll277??3#7CH77>>#&NN#6< OOC %9!KNN#?cJKs15H2'H22 IIc |j}|j}|j}|j}tj dk7r||j |tjj|st j|ddddtjdfD]}tjj||}tjj|rC||j|dtjj|rxt j|dy|jrt j|Dcgc]E}tjj!tjj#|dd vr|G}}t%j&r||Dcgc]2}tjj!|j)d r|4}}n>hd }tjj+|j} |j-| |D]i}tjj||} tjj/| sC|| tjj||kt%j&rt j0|jD]\} } } d | vs tjj+| }tjj|j2d |}tjj|st j4|tjj| d } tjj|d }t7j8| |yyycc}wcc}w)Nr~irpython3zpython3.rQT)r).exez.dll)r vcruntime> python.exe pythonw.exe python_d.exe pythonw_d.exezinit.tclLib)rgrjrrarr;r`rr)chmodr?rr(rLr r'rArr9r startswithraddrwalkr!rMr-r)rr"rqrcopierrosuffixrsuffixesbase_exerrootdirsfilestcldirrs rrzEnvBuilder.setup_python5s ""%%$$ 77d? 7%%t ,77>>$'u%#Y(3;K;KA;N:O0PQww||GV4ww~~d+7??DtL77>>$/u-R}} "zz'22!GG$$RWW%5%5a%8%;<@PP2,,.#+ #+a((+667NO8  Z77++GOO< X&"ggll7F377??3'3 Wf =># ((*)+1C1C)D%D$!U*!#!1!1$!7!#goouf!M!ww~~f5KK/ ggll4< ggll6:>S1*E+'  s A N=>7Oc8 |jg|}tjjx|d<}|j|d<|j dd|j dd|j|d<|j|d<t j|fi|y)Nenv VIRTUAL_ENV PYTHONHOME PYTHONPATHcwdr`)rkrenvironcopyr!pop subprocess check_output)rr"py_argskwargsrrs r_call_new_pythonzEnvBuilder._call_new_pythonrsF $$/w/ jjoo//u $__M  d#  d#u &33|//rcP |j|ddddtjy)N-m ensurepiprz --default-pip)stderr)rrSTDOUTrr"s rrzEnvBuilder._setup_pips,? gt[+-j6G6G  Irc tjjtjjt}tjj |d}|j ||y)NrR)rrrrorr(install_scripts)rr"rs rrzEnvBuilder.setup_scriptssL wwrwwx89ww||D), Wd+rc yr&rs rrzEnvBuilder.post_setups   rc |j|j|j|j|jd}d}d}t j }|j}|jdr|}n$|jdr|}nt j }|jD cic]\}} ||| }}} |jD]\}} |j|| }|Scc} }w)N) __VENV_DIR__ __VENV_NAME____VENV_PROMPT____VENV_BIN_NAME____VENV_PYTHON__c4 |jdd}d|dS)N'z'')replacess r quote_ps1z/EnvBuilder.replace_variables..quote_ps1s&   #t$Aqc8Orc|Sr&rrs r quote_batz/EnvBuilder.replace_variables..quote_batsHrz.ps1z.bat) r!r^rrirjshlexquote script_pathritemsr) rtextr" replacementsrrrrkeyrquoteds rreplace_variableszEnvBuilder.replace_variabless $OO$--&~~!(!1!1&     ))    'E  ! !& )EKKE4@4F4F4HI4H&#qU1X 4H I'--/KC<<V,D0 Js)C+c |j}t|}tj|D]\}}}||k(r1|ddD](}|dtjfvs|j |*>|D]} tjdk(r#| j dr| jdr:tjj|| } ||djtjdd} | s|} n tjj|g| } tjj| stj| tjj| | } t| d5} | j}ddd| jds<| |_ j#d}|j%||}|j'd}nt| d 5} | j/|dddt1j2| | y#1swYxYw#t($r#}d}t*j-d| |Yd}~zd}~wwxYw#1swYaxYw) Ncommonr~r)rz.pdbrbrxz+unable to copy script %r, may be binary: %swb)rglenrrr;r+rrrr(r]seprLrMrreadrdecoderencode UnicodeErrorrmrnrr-copymode)rr"rrqplenrrrrOrsrcfilerdstdirdstfiledataes rrzEnvBuilder.install_scriptss ""4y!# D$t|aA277 33 A!GGtO X(>JJ'78'',,tQ/de**2662126$FWW\\';F;Fww~~f-KK''',,vq1'4(A668D)''(89*1G'H#{{73#55dGD#{{73 #gt, -OOGW59 "/&)((H#(;%G7==LMMg.A.A&}}")"2"2!(")"2"2 '&-&:&: r(s       8 $r/r/j7rsU ,F B  , +/ ++,s *AA  APKn#]ph@M$__pycache__/__main__.cpython-312.pycnu[ ThddlZddlmZdZ edZejey#e$r!ZedezejYdZ[4dZ[wwxYw)N)mainz Error: %s)file) sysrrc Exceptioneprintstderrexit&/usr/lib64/python3.12/venv/__main__.pyrsU ,F B  , +/ ++,s *AA  APKn#]Yu9xx*__pycache__/__init__.cpython-312.opt-1.pycnu[ Th~h2dZddlZddlZddlZddlZddlZddlZddlZddlZdZ eje Z GddZ d dZd dZe dk(rd Z edZej*eyy#e$r!Zed ezej( YdZ[5dZ[wwxYw)z Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. N)pipceZdZdZ ddZdZdZdZedZ dZ d Z e jd k7rdd Zndd Zd ZdZdZdZdZdZdZdZy) EnvBuildera This class exists to allow virtual environment creation to be customized. The constructor parameters determine the builder's behaviour when called upon to create a virtual environment. By default, the builder makes the system (global) site-packages dir *un*available to the created environment. If invoked using the Python -m option, the default is to use copying on Windows platforms but symlinks elsewhere. If instantiated some other way, the default is to *not* use symlinks. :param system_site_packages: If True, the system (global) site-packages dir is available to created environments. :param clear: If True, delete the contents of the environment directory if it already exists, before environment creation. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param upgrade: If True, upgrade an existing virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment :param prompt: Alternative terminal prefix for the environment. :param upgrade_deps: Update the base venv modules to the latest on PyPI Nc||_||_||_||_||_||_|dk(r1t jjt j}||_ ||_ y)N.) system_site_packagesclearsymlinksupgradewith_pip orig_promptospathbasenamegetcwdprompt upgrade_deps)selfrr r r r rrs &/usr/lib64/python3.12/venv/__init__.py__init__zEnvBuilder.__init__/s`%9!      ! S=WW%%biik2F (ctjj|}|j|}|j}d|_|j ||j ||jr|j||js"|j||j||rd|_|j ||jr|j|yy)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN)rrabspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontexttrue_system_site_packagess rcreatezEnvBuilder.create=s''//'*))'2%)$=$=!$)! !!'* '" == OOG $||   w ' OOG $ $)-D %  % %g .     % %g . rctj|D]}tjj||}tjj |stjj |rtj |wtjj|stj|yN) rlistdirrjoinislinkisfileremoveisdirshutilrmtree)rrfns rclear_directoryzEnvBuilder.clear_directoryYso**T"BdB'Bww~~b!RWW^^B%7 " r" b! #rc@||||d}tj|d|S)N)baseplatbaseinstalled_baseinstalled_platbasevenv)schemevars) sysconfigget_path)rr!namer8s r _venv_pathzEnvBuilder._venv_pathas,%")   !!$vDAArc tjdk(rtjj |tjj |k(ryddl} |j tj|} |j tj|}tjj |tjj |k(ryy||k(S#t$rYvwxYw#t$rY`wxYw)zCheck whether two paths appear the same. Whether they refer to the same file is irrelevant; we're testing for whether a human reader would look at the path string and easily tell that they're the same file. win32TrNF) sysplatformrrnormcase_winapiGetLongPathNamefsdecodeOSError)clspath1path2rBs r _same_pathzEnvBuilder._same_pathjs <<7 "ww&"''*:*:5*AA  // E0BC // E0BCww&"''*:*:5*AAE> !    s$$C(>$C7( C43C47 DDcxd}tjtj|vr td|dtjdtjj |r|j r|j|tj}||_ tjj|d|_ |j |jn |j}d|z|_ ||tj}|s tdtjjtjj!|\}}||_||_||_|j)|d}|j)|d } |j)|d } | |_|| | |_|| tj.d kDr{tj0d k(rhtj2d k7rUtjj5|d} tjj | stj6d| ||_tjj;|||_tjj5|||_|||j>|_ tj2dk(rmtjjC|j>} |jE| |j>s(tFjId|j>| | |_ |S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. ctjj|stj|ytjj |stjj |rt d|zy)NzUnable to create directory %r)rrexistsmakedirsr)r* ValueError)ds rcreate_if_neededz7EnvBuilder.ensure_directories..create_if_neededsR77>>!$ A"bggnnQ&7 !@1!DEE'8rzRefusing to create a venv in z( because it contains the PATH separator rz(%s) zUnable to determine path to the running Python interpreter. Provide an explicit path or check that your PATH environment variable is correctly set.scriptsincludepureliblposixdarwinlib64libr>zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s")%rpathsepfspathrNrrLr r0typesSimpleNamespacer!splitenv_namerr?_base_executabler executable python_dir python_exer<inc_pathlib_pathmaxsizer;r@r(symlinkbin_pathrelpathbin_nameenv_exe env_exec_cmdrealpathrIloggerwarning) rr!rPr"rr`dirnameexenamebinpathincpathlibpath link_path real_env_exes rrzEnvBuilder.ensure_directoriess~ F ::7+ +>' "tzz   )'')!77==1!4 $ 7W=M=M 6)!)) ./ /77==)DE'$$//'95//'95//'95"!"! [[5 rww''9 \\X % Wg6I77>>), 5),"77??7G<'',,w8! ' <<7 "77++GOO (4$rctjj|jdx|_}t |dd5}|j d|jz|jrd}nd}|j d|z|j d tjd d z|j|j d |jd |j dtjjtjzg}tjdk(}|r|jr|j!d|s|js|j!d|j"s|j!d|jr|j!d|j$r|j!d|j&r|j!d|j(r|j!d|j*|j!d|j*d|j!|jdj|}|j dtjd|d d d d y #1swYy xYw)aA Create a configuration file indicating where the environment's Python was copied from, and whether the system site-packages should be made available in the environment. :param context: The information for the environment creation request being processed. z pyvenv.cfgwutf-8)encodingz home = %s truefalsez"include-system-site-packages = %s zversion = %d.%d.%d Nz prompt =  zexecutable = %s nt --symlinks--copies --without-pip--system-site-packages--clear --upgrade--upgrade-depsz --prompt="" z command = z -m venv )rrr(r!cfg_pathopenwriterarr? version_inforrlr`r;r appendr r r rr )rr"rfinclargsr~s rrzEnvBuilder.create_configurations#%'',,w "MM4 $g .! GGMG$6$66 7(( GG9D@ A GG*S-=-=bq-AA B{{&)DKK?"56 GG'"''*:*:3>>*JJ KDDBdmm L)dmm J'== O,(( 45zz I&|| K(   ,-+ j)9)9(:!<= KK (88D>D GGj 0 $rB CA/ . .s H4I==Jr~c||j }|sl tjj|sL|r4tjtjj ||ntj|||rtj||yy#t $rtjd||d}Y>wxYw)Y Try symlinking a file, and if that fails, fall back to copying. Unable to symlink %r to %rTN) r rrr)rfr Exceptionrmrnr-copyfile)rsrcdstrelative_symlinks_ok force_copys rsymlink_or_copyzEnvBuilder.symlink_or_copys"]]*J &77>>#./JJrww'7'7'>#3F/FG}}WRWW^^C5HK+ 277#3#3C#8#> 3, GG,,RWW-=-=c-BCMHcGGLL!:!*!%!)C1E ((*"''..2G$$T**C'}Hx'-H*.Hggll277??3#7CH77>>#&NN#6< OOC %9!KNN#?cJKs05H1&H11 IIc|j}|j}|j}|j}tj dk7r||j |tjj|st j|ddddtjdfD]}tjj||}tjj|rC||j|dtjj|rxt j|dy|jrt j|Dcgc]E}tjj!tjj#|dd vr|G}}t%j&r||Dcgc]2}tjj!|j)d r|4}}n>hd }tjj+|j} |j-| |D]i}tjj||} tjj/| sC|| tjj||kt%j&rt j0|jD]\} } } d | vs tjj+| }tjj|j2d |}tjj|st j4|tjj| d } tjj|d }t7j8| |yyycc}wcc}w)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. r~irpython3zpython3.rQT)r).exez.dll)r vcruntime> python.exe pythonw.exe python_d.exe pythonw_d.exezinit.tclLibN)rgrjrrarr;r`rr)chmodr?rr(rLr r'rArr9r startswithraddrwalkr!rMr-r)rr"rqrcopierrosuffixrsuffixesbase_exerrootdirsfilestcldirrs rrzEnvBuilder.setup_python5s""%%$$ 77d? 7%%t ,77>>$'u%#Y(3;K;KA;N:O0PQww||GV4ww~~d+7??DtL77>>$/u-R}} "zz'22!GG$$RWW%5%5a%8%;<@PP2,,.#+ #+a((+667NO8  Z77++GOO< X&"ggll7F377??3'3 Wf =># ((*)+1C1C)D%D$!U*!#!1!1$!7!#goouf!M!ww~~f5KK/ ggll4< ggll6:>S1*E+'  s A N<=7Oc6|jg|}tjjx|d<}|j|d<|j dd|j dd|j|d<|j|d<t j|fi|y)z8Executes the newly created Python using safe-ish optionsenv VIRTUAL_ENV PYTHONHOMEN PYTHONPATHcwdr`)rkrenvironcopyr!pop subprocess check_output)rr"py_argskwargsrrs r_call_new_pythonzEnvBuilder._call_new_pythonrs $$/w/ jjoo//u $__M  d#  d#u &33|//rcN|j|ddddtjy)z1Installs or upgrades pip in a virtual environment-m ensurepiprz --default-pip)stderrN)rrSTDOUTrr"s rrzEnvBuilder._setup_pips) gt[+-j6G6G  Irctjjtjjt}tjj |d}|j ||y)a Set up scripts into the created environment from a directory. This method installs the default scripts into the environment being created. You can prevent the default installation by overriding this method if you really need to, or if you need to specify a different location for the scripts to install. By default, the 'scripts' directory in the venv package is used as the source of scripts to install. rRN)rrrrorr(install_scripts)rr"rs rrzEnvBuilder.setup_scriptssGwwrwwx89ww||D), Wd+rcy)a Hook for post-setup modification of the venv. Subclasses may install additional packages or scripts here, add activation shell scripts, etc. :param context: The information for the environment creation request being processed. Nrs rrzEnvBuilder.post_setups rc|j|j|j|j|jd}d}d}t j }|j}|jdr|}n$|jdr|}nt j }|jD cic]\}} ||| }}} |jD]\}} |j|| }|Scc} }w)ai Replace variable placeholders in script text with context-specific variables. Return the text passed in , but with variables replaced. :param text: The text in which to replace placeholder variables. :param context: The information for the environment creation request being processed. ) __VENV_DIR__ __VENV_NAME____VENV_PROMPT____VENV_BIN_NAME____VENV_PYTHON__c2|jdd}d|dS)a This should satisfy PowerShell quoting rules [1], unless the quoted string is passed directly to Windows native commands [2]. [1]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules [2]: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_parsing#passing-arguments-that-contain-quote-characters 'z'')replacess r quote_ps1z/EnvBuilder.replace_variables..quote_ps1s! #t$Aqc8Orc|Sr&rrs r quote_batz/EnvBuilder.replace_variables..quote_batsHrz.ps1z.bat) r!r^rrirjshlexquote script_pathritemsr) rtextr" replacementsrrrrkeyrquoteds rreplace_variableszEnvBuilder.replace_variabless$OO$--&~~!(!1!1&     ))    'E  ! !& )EKKE4@4F4F4HI4H&#qU1X 4H I'--/KC<<V,D0 Js(C*c|j}t|}tj|D]\}}}||k(r1|ddD](}|dtjfvs|j |*>|D]} tjdk(r#| j dr| jdr:tjj|| } ||djtjdd} | s|} n tjj|g| } tjj| stj| tjj| | } t| d5} | j}ddd| jds<| |_ j#d}|j%||}|j'd}nt| d 5} | j/|dddt1j2| | y#1swYxYw#t($r#}d}t*j-d | |Yd}~zd}~wwxYw#1swYaxYw) as Install scripts into the created environment from a directory. :param context: The information for the environment creation request being processed. :param path: Absolute pathname of a directory containing script. Scripts in the 'common' subdirectory of this directory, and those in the directory named for the platform being run on, are installed in the created environment. Placeholder variables are replaced with environment- specific values. Ncommonr~r)rz.pdbrbrxz+unable to copy script %r, may be binary: %swb)rglenrrr;r+rrrr(r]seprLrMrreadrdecoderencode UnicodeErrorrmrnrr-copymode)rr"rrqplenrrrrOrsrcfilerdstdirdstfiledataes rrzEnvBuilder.install_scriptss""4y!# D$t|aA277 33 A!GGtO X(>JJ'78'',,tQ/de**2662126$FWW\\';F;Fww~~f-KK''',,vq1'4(A668D)''(89*1G'H#{{73#55dGD#{{73 #gt, -OOGW59 "/&)((H#(;%G7==LMMg.A.A&}}")"2"2!(")"2"2 '&-&:&: r*s       8 $r/r/j7iscripts/posix/activate.fishnu[PKj#]]qrscripts/posix/activate.cshnu[PKj#]0Vzzavscripts/common/activatenu[PKj#]}d99#"__pycache__/__init__.cpython-36.pycnu[PKj#]W99)-__pycache__/__init__.cpython-36.opt-1.pycnu[PKj#]{CC) __pycache__/__main__.cpython-36.opt-1.pycnu[PKj#]W'')__pycache__/__init__.cpython-36.opt-2.pycnu[PKj#]{CC#__pycache__/__main__.cpython-36.pycnu[PKj#]{CC)8__pycache__/__main__.cpython-36.opt-2.pycnu[PKn#]F8kI#I#scripts/common/Activate.ps1nu[PKn#]\Q;z;z$hC__pycache__/__init__.cpython-312.pycnu[PKn#]ph@M*__pycache__/__main__.cpython-312.opt-1.pycnu[PKn#]pee*3__pycache__/__init__.cpython-312.opt-2.pycnu[PKn#]ph@M*r&__pycache__/__main__.cpython-312.opt-2.pycnu[PKn#]ph@M$(__pycache__/__main__.cpython-312.pycnu[PKn#]Yu9xx**__pycache__/__init__.cpython-312.opt-1.pycnu[PK