Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
PK!\bscripts/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; 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 if ("__VENV_NAME__" != "") then set env_name = "__VENV_NAME__" else if (`basename "VIRTUAL_ENV"` == "__") then # special case for Aspen magic directories # see http://www.zetadev.com/software/aspen/ set env_name = `basename \`dirname "$VIRTUAL_ENV"\`` else set env_name = `basename "$VIRTUAL_ENV"` endif endif set prompt = "[$env_name] $prompt" unset env_name endif alias pydoc python -m pydoc rehash PK!A8 scripts/posix/activate.fishnu[# This file must be used with ". bin/activate.fish" *from fish* (http://fishshell.org) # you cannot run it directly function deactivate -d "Exit virtualenv 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" functions -e fish_prompt set -e _OLD_FISH_PROMPT_OVERRIDE functions -c _old_fish_prompt fish_prompt functions -e _old_fish_prompt end set -e VIRTUAL_ENV 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 # Prompt override? if test -n "__VENV_PROMPT__" printf "%s%s" "__VENV_PROMPT__" (set_color normal) else # ...Otherwise, prepend env set -l _checkbase (basename "$VIRTUAL_ENV") if test $_checkbase = "__" # special case for Aspen magic directories # see http://www.zetadev.com/software/aspen/ printf "%s[%s]%s " (set_color -b blue white) (basename (dirname "$VIRTUAL_ENV")) (set_color normal) else printf "%s(%s)%s" (set_color -b blue white) (basename "$VIRTUAL_ENV") (set_color normal) end end # Restore the return status of the previous command. echo "exit $old_status" | . _old_fish_prompt end set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" end PK!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" PK!dscripts/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 # This should detect bash and zsh, which have a hash command that must # be called to get it to forget past commands. Without forgetting # past commands the $PATH changes we made may not be respected if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then hash -r fi if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then PS1="${_OLD_VIRTUAL_PS1:-}" export PS1 unset _OLD_VIRTUAL_PS1 fi unset VIRTUAL_ENV if [ ! "$1" = "nondestructive" ] ; then # Self destruct! unset -f deactivate fi } # unset irrelevant variables deactivate nondestructive VIRTUAL_ENV="__VENV_DIR__" export VIRTUAL_ENV _OLD_VIRTUAL_PATH="$PATH" PATH="$VIRTUAL_ENV/__VENV_BIN_NAME__:$PATH" export PATH # 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:-}" if [ "x__VENV_PROMPT__" != x ] ; then PS1="__VENV_PROMPT__${PS1:-}" else if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then # special case for Aspen magic directories # see http://www.zetadev.com/software/aspen/ PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1" else PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1" fi fi export PS1 fi # This should detect bash and zsh, which have a hash command that must # be called to get it to forget past commands. Without forgetting # past commands the $PATH changes we made may not be respected if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then hash -r fi PK!*Zll*__pycache__/__init__.cpython-311.opt-2.pycnu[ !A?hf8 ddlZddlZddlZddlZddlZddlZddlZddlZdZej e Z GddZ d dZ d dZe dkrId Z edZn'#e$rZed ezej YdZ[ndZ[wwxYwejedSdS)N)pip setuptoolsceZdZ ddZdZdZdZdZdZe j d krdd Z ndd Z d Z d Z dZdZdZdZdZdZdS) EnvBuilderFNc||_||_||_||_||_||_|dkr0t jt j }||_ ||_ dS)N.) system_site_packagesclearsymlinksupgradewith_pip orig_promptospathbasenamegetcwdprompt upgrade_deps)selfr r r r r rrs :/opt/alt/python-internal/lib64/python3.11/venv/__init__.py__init__zEnvBuilder.__init__/si%9!      ! S==W%%bikk22F (c tj|}||}|j}d|_|||||jr|||j s*| || ||rd|_|||j r| |dSdS)NFT)rrabspathensure_directoriesr create_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontexttrue_system_site_packagess rcreatezEnvBuilder.create=s  '//'**))'22%)$=!$)! !!'*** '""" = % OOG $ $ $| %   w ' ' ' OOG $ $ $ $ /)-D %  % %g . . .   /  % %g . . . . . / /rctj|D]}tj||}tj|stj|rtj|utj|rtj |dSN) rlistdirrjoinislinkisfileremoveisdirshutilrmtree)rrfns rclear_directoryzEnvBuilder.clear_directoryYs*T"" " "BdB''Bw~~b!! "RW^^B%7%7 " " r"" " b!!!  " "rc>||||d}tj|d|S)N)baseplatbaseinstalled_baseinstalled_platbasevenv)schemevars) sysconfigget_path)rr"namer9s r _venv_pathzEnvBuilder._venv_pathas4%")    !$vDAAAArc d}tjtj|vr td|dtjdtj|r|jr||tj }||_ tj |d|_ |j |j n|j }d|z|_ ||tj}|stdtj tj|\}}||_||_||_||d}||d } ||d } | |_|| || tjd krttjd krdtjd krTtj|d} tj| stjd| ||_tj|||_tj|||_|||j|_tjdkrtj |j} tj!| tj!|jkr(tD#d|j| | |_|S)Nctj|stj|dStj|stj|rt d|zdS)NzUnable to create directory %r)rrexistsmakedirsr*r+ ValueError)ds rcreate_if_neededz7EnvBuilder.ensure_directories..create_if_neededrsw7>>!$$ F A"" FbgnnQ&7&7 F !@1!DEEE F FrzRefusing 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.scriptsincludepureliblposixdarwinlib64libwin32zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s")$rpathsepfspathrBrr@r r1typesSimpleNamespacer"splitenv_namersys_base_executabler executable python_dir python_exer=inc_pathmaxsizer<platformr)symlinkbin_pathrelpathbin_nameenv_exe env_exec_cmdrealpathnormcaseloggerwarning) rr"rDr#rrVdirnameexenamebinpathincpathlibpath link_path real_env_exes rrzEnvBuilder.ensure_directoriesjs  F F F :7++ + +MWMM?AzMMMNN N 7>>' " " *tz *   ) ) )'))!7==11!4 $ 7W=M 6)!!!)  /.// /7==)D)DEE'$$//'955//'955//'955"!!!!!! [5 rw''9'9 \X % % Wg66I7>>),, - 5),,,"7??7G<<',,w88!!! ' <7 " "7++GO<>> (4$rc tj|jdx|_}t |dd5}|d|jz|jrd}nd}|d|z|d tj dd z|j |d |j d |d tj tj zg}tjdk}|r|jr|d|s|js|d|js|d|jr|d|jr|d|jr|d|jr|d|j|d|jd||jd|}|dtj d|d ddddS#1swxYwYdS)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_pathopenwriterWr rT version_inforrbrVr<r appendr r r rr)rr#rfinclargsrus rrzEnvBuilder.create_configurations #%',,w "M"MM4 $g . . . D! GGMG$66 7 7 7(  GG9D@ A A A GG*S-=bqb-AA B B B{&5DK555666 GG'"'*:*:3>*J*JJ K K KDDB *dm * L))) (dm ( J'''= - O,,,( 6 4555z ' I&&&| ) K(((  . ,---+ <)9<<<=== KK ( ( (88D>>D GGBBB$BBB C C CA D D D D D D D D D D D D D D D D D DsH$I11I58I5ruc |j }|s tj|sJ|r3tjtj||ntj||n.#t $r!td||d}YnwxYw|rtj ||dSdS)NUnable to symlink %r to %rT) r rrr*r\r Exceptionrdrer.copyfile)rsrcdstrelative_symlinks_ok force_copys rsymlink_or_copyzEnvBuilder.symlink_or_copys "]*J & &7>>#..1/1Jrw'7'7'<'>#3F3F/FG} KW KRW^^C5H5H KK+- 27#3#3C#8#8#>>>> 3,,,F KKKNN#?cJJJJJK G,,RW-=-=c-B-BCCMHcGLL!:!:!*!%!)C11E (** "'..2G2G $$T**-*C'}Hx''-HH**.Hgll27??3#7#7CHH7>>#&& =NN#6<<< OC % % % % %s*A B66&CCc" |j}|j}|j}|j}tjdkr||j|tj|st j |ddddtj dfD]}tj ||}tj |sG||j|dtj|st j |ddS|jr>d t j|D}t!jr d |D}n=hd }tj|j}|||D]k}tj ||} tj| r*|| tj ||lt!jrt j|jD]\} } } d | vrtj| } tj |jd | } tj | st j| tj | d } tj | d }t1j| |dSdSdS)Nruirpython3zpython3.rET)rcg|]H}tjtj|ddvF|IS)rE).exez.dll)rrrcr.0rs r z+EnvBuilder.setup_python..6sSG$$RW%5%5a%8%8%;<<@PPPPPPrcvg|]6}tj|d4|7S))r vcruntime)rrrc startswithrs rrz+EnvBuilder.setup_python..;sM   ((++667NOO    r> python.exe pythonw.exe python_d.exe pythonw_d.exezinit.tclLib)r]r`rrWrr<rVrr*chmodrTrr)r@r r(r:rraddrwalkr"rAr.r)rr#rhrcopierrfsuffixsuffixesbase_exerrootdirsfilestcldirrs rrzEnvBuilder.setup_pythons "%$ 7d?? F7%t , , ,7>>$'' &u%%%#Y0P3;KA;N0P0PQ . .w||GV44w~~d++.F7?DtLLLL7>>$//.u--- . .} ' !z'22,..  #+   H ZYY7++GO<< X&&&" ? ?gll7F337??3''?F3 Wf = =>>>(** )+1C)D)D  %D$!U**!#!1!1$!7!7!#gouf!M!M!w~~f550K/// gll4<< gll6:>>S111+    rc |jg|}tjx|d<}|j|d<|dd|dd|j|d<|j|d<t j|fi|dS)Nenv VIRTUAL_ENV PYTHONHOME PYTHONPATHcwdrV)rarenvironcopyr"pop subprocess check_output)rr#py_argskwargsrrs r_call_new_pythonzEnvBuilder._call_new_pythonVsF $/w/ joo///u $_M  d###  d###u &3|///////rcR ||ddddtjdS)N-m ensurepipr{z --default-pip)stderr)rrSTDOUTrr#s rrzEnvBuilder._setup_pipesA? gt[+-j6G  I I I I Irc tjtjt}tj|d}|||dS)NrF)rrrrfrr)install_scripts)rr#rs rrzEnvBuilder.setup_scriptsjs[ wrwx8899w||D),, Wd+++++rc dSr'rs rr zEnvBuilder.post_setupys  rc |j|j|j|j|jd}d}d}t j |j}|dr| n$|dr| n t j fd| D}| D]\}}| ||}|S)N) __VENV_DIR__ __VENV_NAME____VENV_PROMPT____VENV_BIN_NAME____VENV_PYTHON__c< |dd}d|dS)N'z'')replacess r quote_ps1z/EnvBuilder.replace_variables..quote_ps1s)   #t$$Aq888Orc|Sr'rrs r quote_batz/EnvBuilder.replace_variables..quote_batsHrz.ps1z.batc.i|]\}}||Srr)rkeyrquotes r z0EnvBuilder.replace_variables..s'III&#qUU1XXIIIr) r"rSrr_r`shlexr script_pathritemsr) rtextr# replacementsrrrrquotedrs @rreplace_variableszEnvBuilder.replace_variabless $O$-&~!(!1&          )    ' ' EE  ! !& ) ) EEKEIIIIL4F4F4H4HIII '--// - -KC<<V,,DD rc& |j}t|}tj|D]c\}}}||kr3|ddD]'}|dtjfvr||(@|D]} tjdkr+| dr| dr>tj || } ||d tj dd} | s|} ntjj |g| R} tj | stj | tj | | } t| d5} | }dddn #1swxYwY| ds~| |_ |d}|||}|d}n5#t($r(}d}t*d| |Yd}~nd}~wwxYw|Rt| d 5} | |dddn #1swxYwYt1j| | !edS) Ncommonrur)rz.pdbrbroz+unable to copy script %r, may be binary: %swb)r]lenrrr<r,rrrr)rRsepr@rArreadrdecoderencode UnicodeErrorrdrerr.copymode)rr#rrhplenrrrrCrsrcfilerdstdirdstfiledataes rrzEnvBuilder.install_scriptss1 "4yy!#" 6" 6 D$t||aaa''A27 333 A 6 6GtOO X(>(>OJJ'788$',,tQ//dee**26221226<$FFW\';F;;;Fw~~f--(K'''',,vq11'4(($A6688D$$$$$$$$$$$$$$$''(899 H*1G'H#{{733#55dGDD#{{733'HHH#(;= 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.)prog descriptionepilogrENV_DIR+z)A directory to create the environment in.)metavarnargshelpry store_true system_sitezDGive the virtual environment access to the system site-packages dir.)defaultactiondestrrurvr z[Try to use symlinks rather than copies, when symlinks are not the default for the platform.rw store_falsez\Try to use copies rather than symlinks, even when symlinks are the default for the platform.rzr zcDelete the contents of the environment directory if it already exists, before environment creation.r{r zlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.rxr z]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rr|rz;Upgrade core dependencies: {} to the latest version in PyPIr~z1you cannot supply --upgrade and --clear together.)r r r r r rr)rTrhasattrrBargparseArgumentParserr add_argumentrr<add_mutually_exclusive_groupformatr)r parse_argsr r rrr r rrrr%) r compatiblerparser use_symlinksgroupoptionsrrCs rmainr!sJ &   S- ( ( FIJJJ((h6D1H ) I I FIS!L  N N N4e#/m"=  > > > 7d?? LLL3355 <".Z!0  1 1 1 : @@@  A NN1      r__main__rEz Error: %s)file)FFFFNFr')loggingrr.rrTr:rPrr getLoggerrrdrr%r!rcrrprintrexitrrrr)sf    '  8 $ $V/V/V/V/V/V/V/V/r7||||d}tj|d|S)N)baseplatbaseinstalled_baseinstalled_platbasevenv)schemevars) sysconfigget_path)rr"namer9s r _venv_pathzEnvBuilder._venv_pathas4%")    !$vDAAAArcd}tjtj|vr td|dtjdtj|r|jr||tj }||_ tj |d|_ |j |j n|j }d|z|_ ||tj}|stdtj tj|\}}||_||_||_||d }||d } ||d } | |_|| || tjd krttjd krdtjdkrTtj|d} tj| stjd| ||_tj|||_tj|||_|||j|_tjdkrtj |j} tj!| tj!|jkr(tD#d|j| | |_|S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. ctj|stj|dStj|stj|rt d|zdS)NzUnable to create directory %r)rrexistsmakedirsr*r+ ValueError)ds rcreate_if_neededz7EnvBuilder.ensure_directories..create_if_neededrsw7>>!$$ F A"" FbgnnQ&7&7 F !@1!DEEE F FrzRefusing to create a venv in z( because it contains the PATH separator rNz(%s) zUnable to determine path to the running Python interpreter. Provide an explicit path or check that your PATH environment variable is correctly set.scriptsincludepureliblposixdarwinlib64libwin32zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s")$rpathsepfspathrBrr@r r1typesSimpleNamespacer"splitenv_namersys_base_executabler executable python_dir python_exer=inc_pathmaxsizer<platformr)symlinkbin_pathrelpathbin_nameenv_exe env_exec_cmdrealpathnormcaseloggerwarning) rr"rDr#rrVdirnameexenamebinpathincpathlibpath link_path real_env_exes rrzEnvBuilder.ensure_directoriesjs  F F F :7++ + +MWMM?AzMMMNN N 7>>' " " *tz *   ) ) )'))!7==11!4 $ 7W=M 6)!!!)  /.// /7==)D)DEE'$$//'955//'955//'955"!!!!!! [5 rw''9'9 \X % % Wg66I7>>),, - 5),,,"7??7G<<',,w88!!! ' <7 " "7++GO<>> (4$rctj|jdx|_}t |dd5}|d|jz|jrd}nd}|d|z|d tj d d z|j |d |j d |dtj tj zg}tjdk}|r|jr|d|s|js|d|js|d|jr|d|jr|d|jr|d|jr|d|j|d|jd||jd|}|dtj d|d d d d d S#1swxYwYd 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.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_pathopenwriterWr rT version_inforrbrVr<r appendr r r rr)rr#rfinclargsrus rrzEnvBuilder.create_configurations#%',,w "M"MM4 $g . . . D! GGMG$66 7 7 7(  GG9D@ A A A GG*S-=bqb-AA B B B{&5DK555666 GG'"'*:*:3>*J*JJ K K KDDB *dm * L))) (dm ( J'''= - O,,,( 6 4555z ' I&&&| ) K(((  . ,---+ <)9<<<=== KK ( ( (88D>>D GGBBB$BBB C C CA D D D D D D D D D D D D D D D D D DsH$I00I47I4ruc|j }|s tj|s|rutj|tj|ksJtjtj||ntj||n.#t$r!t d||d}YnwxYw|rtj ||dSdS)Y Try symlinking a file, and if that fails, fall back to copying. Unable to symlink %r to %rTN) r rrr*rfr\r Exceptionrdrer.copyfile)rsrcdstrelative_symlinks_ok force_copys rsymlink_or_copyzEnvBuilder.symlink_or_copys"]*J & &7>>#..1/1#%7??3#7#727??3;O;O#O#O#O#OJrw'7'7'<'>#3F3F/FG} KW KRW^^C5H5H KK+-!ws33rws7K7KKKKK 27#3#3C#8#8#>>>> 3,,,F KKKNN#?cJJJJJK G,,RW-=-=c-B-BCCMHcGLL!:!:!*!%!)C11E (** "'..2G2G $$T**-*C'}Hx''-HH**.Hgll27??3#7#7CHH7>>#&& =NN#6<<< OC % % % % %s)B C77&D D c |j}|j}|j}|j}tjdkr||j|tj|st j |ddddtj dfD]}tj ||}tj |sG||j|dtj|st j |ddS|jr>d t j|D}t!jr d |D}n=hd }tj|j}|||D]k}tj ||} tj| r*|| tj ||lt!jrt j|jD]\} } } d | vrtj| } tj |jd | } tj | st j| tj | d } tj | d }t1j| |dSdSdS)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. ruirpython3zpython3.rET)rcg|]H}tjtj|ddvF|IS)rE).exez.dll)rrrcr.0rs r z+EnvBuilder.setup_python..6sSG$$RW%5%5a%8%8%;<<@PPPPPPrcvg|]6}tj|d4|7S))r vcruntime)rrrc startswithrs rrz+EnvBuilder.setup_python..;sM   ((++667NOO    r> python.exe pythonw.exe python_d.exe pythonw_d.exezinit.tclLibN)r]r`rrWrr<rVrr*chmodrTrr)r@r r(r:rraddrwalkr"rAr.r)rr#rhrcopierrfsuffixsuffixesbase_exerrootdirsfilestcldirrs rrzEnvBuilder.setup_pythons"%$ 7d?? F7%t , , ,7>>$'' &u%%%#Y0P3;KA;N0P0PQ . .w||GV44w~~d++.F7?DtLLLL7>>$//.u--- . .} ' !z'22,..  #+   H ZYY7++GO<< X&&&" ? ?gll7F337??3''?F3 Wf = =>>>(** )+1C)D)D  %D$!U**!#!1!1$!7!7!#gouf!M!M!w~~f550K/// gll4<< gll6:>>S111+    rc|jg|}tjx|d<}|j|d<|dd|dd|j|d<|j|d<t j|fi|dS)z8Executes the newly created Python using safe-ish optionsenv VIRTUAL_ENV PYTHONHOMEN PYTHONPATHcwdrV)rarenvironcopyr"pop subprocess check_output)rr#py_argskwargsrrs r_call_new_pythonzEnvBuilder._call_new_pythonVs $/w/ joo///u $_M  d###  d###u &3|///////rcP||ddddtjdS)z1Installs or upgrades pip in a virtual environment-m ensurepipr{z --default-pip)stderrN)rrSTDOUTrr#s rrzEnvBuilder._setup_pipes> gt[+-j6G  I I I I Irctjtjt}tj|d}|||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. rFN)rrrrfrr)install_scripts)rr#rs rrzEnvBuilder.setup_scriptsjsVwrwx8899w||D),, Wd+++++rcdS)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 rr zEnvBuilder.post_setupys  rc |j|j|j|j|jd}d}d}t j |j}|dr| n$|dr| n t j fd| D}| D]\}}| ||}|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. ) __VENV_DIR__ __VENV_NAME____VENV_PROMPT____VENV_BIN_NAME____VENV_PYTHON__c:|dd}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$$Aq888Orc|Sr'rrs r quote_batz/EnvBuilder.replace_variables..quote_batsHrz.ps1z.batc.i|]\}}||Srr)rkeyrquotes r z0EnvBuilder.replace_variables..s'III&#qUU1XXIIIr) r"rSrr_r`shlexr script_pathritemsr) rtextr# replacementsrrrrquotedrs @rreplace_variableszEnvBuilder.replace_variabless$O$-&~!(!1&          )    ' ' EE  ! !& ) ) EEKEIIIIL4F4F4H4HIII '--// - -KC<<V,,DD rc$|j}t|}tj|D]c\}}}||kr3|ddD]'}|dtjfvr||(@|D]} tjdkr+| dr| dr>tj || } ||d tj dd} | s|} ntjj |g| R} tj | stj | tj | | } t| d5} | }dddn #1swxYwY| ds~| |_ |d}|||}|d}n5#t($r(}d}t*d | |Yd}~nd}~wwxYw|Rt| d 5} | |dddn #1swxYwYt1j| | !edS) 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. Ncommonrur)rz.pdbrbroz+unable to copy script %r, may be binary: %swb)r]lenrrr<r,rrrr)rRsepr@rArreadrdecoderencode UnicodeErrorrdrerr.copymode)rr#rrhplenrrrrCrsrcfilerdstdirdstfiledataes rrzEnvBuilder.install_scriptss,"4yy!#" 6" 6 D$t||aaa''A27 333 A 6 6GtOO X(>(>OJJ'788$',,tQ//dee**26221226<$FFW\';F;;;Fw~~f--(K'''',,vq11'4(($A6688D$$$$$$$$$$$$$$$''(899 H*1G'H#{{733#55dGDD#{{733'HHH#(;= 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.)prog descriptionepilogrENV_DIR+z)A directory to create the environment in.)metavarnargshelpry store_true system_sitezDGive the virtual environment access to the system site-packages dir.)defaultactiondestrrurvr z[Try to use symlinks rather than copies, when symlinks are not the default for the platform.rw store_falsez\Try to use copies rather than symlinks, even when symlinks are the default for the platform.rzr zcDelete the contents of the environment directory if it already exists, before environment creation.r{r zlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.rxr z]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rr|rz;Upgrade core dependencies: {} to the latest version in PyPIr~z1you cannot supply --upgrade and --clear together.)r r r r r rr)rTrhasattrrBargparseArgumentParserr add_argumentrr<add_mutually_exclusive_groupformatr)r parse_argsr r rrr r rrrr%) r compatiblerparser use_symlinksgroupoptionsrrCs rmainr#sJ &   S- ( ( FIJJJ((h6D1H ) I I FIS!L  N N N4e#/m"=  > > > 7d?? LLL3355 <".Z!0  1 1 1 : @@@  A NN1      r__main__rEz Error: %s)file)FFFFNFr')rloggingrr.rrTr:rPrr getLoggerrrdrr%r#rcrrprintrexitrrrr+sk    '  8 $ $V/V/V/V/V/V/V/V/r7rs ,DFFF BB,,, E+/ +++++++++, s ?:?PK!c鰬77*__pycache__/__main__.cpython-311.opt-2.pycnu[ !A?hddlZddlmZdZ edZn'#e$rZedezejYdZ[ndZ[wwxYwejedS)N)mainz Error: %s)file) sysrrc Exceptioneprintstderrexit:/opt/alt/python-internal/lib64/python3.11/venv/__main__.pyrs ,DFFF BB,,, E+/ +++++++++, s ?:?PK!?R~~*__pycache__/__init__.cpython-311.opt-1.pycnu[ !A?hf:dZddlZddlZddlZddlZddlZddlZddlZddlZdZ ej e Z GddZ d dZddZe d krId Z edZn'#e$rZed ezej YdZ[ndZ[wwxYwejedSdS)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)pip setuptoolsceZdZdZ ddZdZdZdZdZd Z e j d krdd Z ndd Z d Z dZdZdZdZdZdZdZdS) 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 FNc||_||_||_||_||_||_|dkr0t jt j }||_ ||_ dS)N.) system_site_packagesclearsymlinksupgradewith_pip orig_promptospathbasenamegetcwdprompt upgrade_deps)selfr r r r r rrs :/opt/alt/python-internal/lib64/python3.11/venv/__init__.py__init__zEnvBuilder.__init__/si%9!      ! S==W%%bikk22F (ctj|}||}|j}d|_|||||jr|||j s*| || ||rd|_|||j r| |dSdS)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN)rrabspathensure_directoriesr create_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontexttrue_system_site_packagess rcreatezEnvBuilder.create=s'//'**))'22%)$=!$)! !!'*** '""" = % OOG $ $ $| %   w ' ' ' OOG $ $ $ $ /)-D %  % %g . . .   /  % %g . . . . . / /rctj|D]}tj||}tj|stj|rtj|utj|rtj |dSN) rlistdirrjoinislinkisfileremoveisdirshutilrmtree)rrfns rclear_directoryzEnvBuilder.clear_directoryYs*T"" " "BdB''Bw~~b!! "RW^^B%7%7 " " r"" " b!!!  " "rc>||||d}tj|d|S)N)baseplatbaseinstalled_baseinstalled_platbasevenv)schemevars) sysconfigget_path)rr"namer9s r _venv_pathzEnvBuilder._venv_pathas4%")    !$vDAAAArcd}tjtj|vr td|dtjdtj|r|jr||tj }||_ tj |d|_ |j |j n|j }d|z|_ ||tj}|stdtj tj|\}}||_||_||_||d }||d } ||d } | |_|| || tjd krttjd krdtjdkrTtj|d} tj| stjd| ||_tj|||_tj|||_|||j|_tjdkrtj |j} tj!| tj!|jkr(tD#d|j| | |_|S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. ctj|stj|dStj|stj|rt d|zdS)NzUnable to create directory %r)rrexistsmakedirsr*r+ ValueError)ds rcreate_if_neededz7EnvBuilder.ensure_directories..create_if_neededrsw7>>!$$ F A"" FbgnnQ&7&7 F !@1!DEEE F FrzRefusing to create a venv in z( because it contains the PATH separator rNz(%s) zUnable to determine path to the running Python interpreter. Provide an explicit path or check that your PATH environment variable is correctly set.scriptsincludepureliblposixdarwinlib64libwin32zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s")$rpathsepfspathrBrr@r r1typesSimpleNamespacer"splitenv_namersys_base_executabler executable python_dir python_exer=inc_pathmaxsizer<platformr)symlinkbin_pathrelpathbin_nameenv_exe env_exec_cmdrealpathnormcaseloggerwarning) rr"rDr#rrVdirnameexenamebinpathincpathlibpath link_path real_env_exes rrzEnvBuilder.ensure_directoriesjs  F F F :7++ + +MWMM?AzMMMNN N 7>>' " " *tz *   ) ) )'))!7==11!4 $ 7W=M 6)!!!)  /.// /7==)D)DEE'$$//'955//'955//'955"!!!!!! [5 rw''9'9 \X % % Wg66I7>>),, - 5),,,"7??7G<<',,w88!!! ' <7 " "7++GO<>> (4$rctj|jdx|_}t |dd5}|d|jz|jrd}nd}|d|z|d tj d d z|j |d |j d |dtj tj zg}tjdk}|r|jr|d|s|js|d|js|d|jr|d|jr|d|jr|d|jr|d|j|d|jd||jd|}|dtj d|d d d d d S#1swxYwYd 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.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_pathopenwriterWr rT version_inforrbrVr<r appendr r r rr)rr#rfinclargsrus rrzEnvBuilder.create_configurations#%',,w "M"MM4 $g . . . D! GGMG$66 7 7 7(  GG9D@ A A A GG*S-=bqb-AA B B B{&5DK555666 GG'"'*:*:3>*J*JJ K K KDDB *dm * L))) (dm ( J'''= - O,,,( 6 4555z ' I&&&| ) K(((  . ,---+ <)9<<<=== KK ( ( (88D>>D GGBBB$BBB C C CA D D D D D D D D D D D D D D D D D DsH$I00I47I4ruc~|j }|s tj|sJ|r3tjtj||ntj||n.#t $r!td||d}YnwxYw|rtj ||dSdS)Y Try symlinking a file, and if that fails, fall back to copying. Unable to symlink %r to %rTN) r rrr*r\r Exceptionrdrer.copyfile)rsrcdstrelative_symlinks_ok force_copys rsymlink_or_copyzEnvBuilder.symlink_or_copys"]*J & &7>>#..1/1Jrw'7'7'<'>#3F3F/FG} KW KRW^^C5H5H KK+- 27#3#3C#8#8#>>>> 3,,,F KKKNN#?cJJJJJK G,,RW-=-=c-B-BCCMHcGLL!:!:!*!%!)C11E (** "'..2G2G $$T**-*C'}Hx''-HH**.Hgll27??3#7#7CHH7>>#&& =NN#6<<< OC % % % % %s)A B55&CCc |j}|j}|j}|j}tjdkr||j|tj|st j |ddddtj dfD]}tj ||}tj |sG||j|dtj|st j |ddS|jr>d t j|D}t!jr d |D}n=hd }tj|j}|||D]k}tj ||} tj| r*|| tj ||lt!jrt j|jD]\} } } d | vrtj| } tj |jd | } tj | st j| tj | d } tj | d }t1j| |dSdSdS)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. ruirpython3zpython3.rET)rcg|]H}tjtj|ddvF|IS)rE).exez.dll)rrrcr.0rs r z+EnvBuilder.setup_python..6sSG$$RW%5%5a%8%8%;<<@PPPPPPrcvg|]6}tj|d4|7S))r vcruntime)rrrc startswithrs rrz+EnvBuilder.setup_python..;sM   ((++667NOO    r> python.exe pythonw.exe python_d.exe pythonw_d.exezinit.tclLibN)r]r`rrWrr<rVrr*chmodrTrr)r@r r(r:rraddrwalkr"rAr.r)rr#rhrcopierrfsuffixsuffixesbase_exerrootdirsfilestcldirrs rrzEnvBuilder.setup_pythons"%$ 7d?? F7%t , , ,7>>$'' &u%%%#Y0P3;KA;N0P0PQ . .w||GV44w~~d++.F7?DtLLLL7>>$//.u--- . .} ' !z'22,..  #+   H ZYY7++GO<< X&&&" ? ?gll7F337??3''?F3 Wf = =>>>(** )+1C)D)D  %D$!U**!#!1!1$!7!7!#gouf!M!M!w~~f550K/// gll4<< gll6:>>S111+    rc|jg|}tjx|d<}|j|d<|dd|dd|j|d<|j|d<t j|fi|dS)z8Executes the newly created Python using safe-ish optionsenv VIRTUAL_ENV PYTHONHOMEN PYTHONPATHcwdrV)rarenvironcopyr"pop subprocess check_output)rr#py_argskwargsrrs r_call_new_pythonzEnvBuilder._call_new_pythonVs $/w/ joo///u $_M  d###  d###u &3|///////rcP||ddddtjdS)z1Installs or upgrades pip in a virtual environment-m ensurepipr{z --default-pip)stderrN)rrSTDOUTrr#s rrzEnvBuilder._setup_pipes> gt[+-j6G  I I I I Irctjtjt}tj|d}|||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. rFN)rrrrfrr)install_scripts)rr#rs rrzEnvBuilder.setup_scriptsjsVwrwx8899w||D),, Wd+++++rcdS)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 rr zEnvBuilder.post_setupys  rc |j|j|j|j|jd}d}d}t j |j}|dr| n$|dr| n t j fd| D}| D]\}}| ||}|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. ) __VENV_DIR__ __VENV_NAME____VENV_PROMPT____VENV_BIN_NAME____VENV_PYTHON__c:|dd}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$$Aq888Orc|Sr'rrs r quote_batz/EnvBuilder.replace_variables..quote_batsHrz.ps1z.batc.i|]\}}||Srr)rkeyrquotes r z0EnvBuilder.replace_variables..s'III&#qUU1XXIIIr) r"rSrr_r`shlexr script_pathritemsr) rtextr# replacementsrrrrquotedrs @rreplace_variableszEnvBuilder.replace_variabless$O$-&~!(!1&          )    ' ' EE  ! !& ) ) EEKEIIIIL4F4F4H4HIII '--// - -KC<<V,,DD rc$|j}t|}tj|D]c\}}}||kr3|ddD]'}|dtjfvr||(@|D]} tjdkr+| dr| dr>tj || } ||d tj dd} | s|} ntjj |g| R} tj | stj | tj | | } t| d5} | }dddn #1swxYwY| ds~| |_ |d}|||}|d}n5#t($r(}d}t*d | |Yd}~nd}~wwxYw|Rt| d 5} | |dddn #1swxYwYt1j| | !edS) 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. Ncommonrur)rz.pdbrbroz+unable to copy script %r, may be binary: %swb)r]lenrrr<r,rrrr)rRsepr@rArreadrdecoderencode UnicodeErrorrdrerr.copymode)rr#rrhplenrrrrCrsrcfilerdstdirdstfiledataes rrzEnvBuilder.install_scriptss,"4yy!#" 6" 6 D$t||aaa''A27 333 A 6 6GtOO X(>(>OJJ'788$',,tQ//dee**26221226<$FFW\';F;;;Fw~~f--(K'''',,vq11'4(($A6688D$$$$$$$$$$$$$$$''(899 H*1G'H#{{733#55dGDD#{{733'HHH#(;= 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.)prog descriptionepilogrENV_DIR+z)A directory to create the environment in.)metavarnargshelpry store_true system_sitezDGive the virtual environment access to the system site-packages dir.)defaultactiondestrrurvr z[Try to use symlinks rather than copies, when symlinks are not the default for the platform.rw store_falsez\Try to use copies rather than symlinks, even when symlinks are the default for the platform.rzr zcDelete the contents of the environment directory if it already exists, before environment creation.r{r zlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.rxr z]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rr|rz;Upgrade core dependencies: {} to the latest version in PyPIr~z1you cannot supply --upgrade and --clear together.)r r r r r rr)rTrhasattrrBargparseArgumentParserr add_argumentrr<add_mutually_exclusive_groupformatr)r parse_argsr r rrr r rrrr%) r compatiblerparser use_symlinksgroupoptionsrrCs rmainr#sJ &   S- ( ( FIJJJ((h6D1H ) I I FIS!L  N N N4e#/m"=  > > > 7d?? LLL3355 <".Z!0  1 1 1 : @@@  A NN1      r__main__rEz Error: %s)file)FFFFNFr')rloggingrr.rrTr:rPrr getLoggerrrdrr%r#rcrrprintrexitrrrr+sk    '  8 $ $V/V/V/V/V/V/V/V/r7rs ,DFFF BB,,, E+/ +++++++++, s ?:?PK!, __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) PK! HH __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 types 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. """ def __init__(self, system_site_packages=False, clear=False, symlinks=False, upgrade=False, with_pip=False, prompt=None): self.system_site_packages = system_site_packages self.clear = clear self.symlinks = symlinks self.upgrade = upgrade self.with_pip = with_pip self.prompt = prompt 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) 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 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.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) env = os.environ if sys.platform == 'darwin' and '__PYVENV_LAUNCHER__' in env: executable = os.environ['__PYVENV_LAUNCHER__'] else: executable = sys.executable dirname, exename = os.path.split(os.path.abspath(executable)) context.executable = executable context.python_dir = dirname context.python_exe = exename if sys.platform == 'win32': binname = 'Scripts' incpath = 'Include' libpath = os.path.join(env_dir, 'Lib', 'site-packages') else: binname = 'bin' incpath = 'include' libpath = os.path.join(env_dir, 'lib', 'python%d.%d' % sys.version_info[:2], 'site-packages') context.inc_path = path = os.path.join(env_dir, incpath) create_if_needed(path) 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 = os.path.join(env_dir, binname) context.bin_name = binname context.env_exe = os.path.join(binpath, exename) create_if_needed(binpath) 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 os.name == 'nt': def include_binary(self, f): if f.endswith(('.pyd', '.dll')): result = True else: result = f.startswith('python') and f.endswith('.exe') return result 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) 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 copier(context.executable, path) dirname = context.python_dir if os.name != 'nt': if not os.path.islink(path): os.chmod(path, 0o755) for suffix in ('python', 'python3'): 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: subdir = 'DLLs' include = self.include_binary files = [f for f in os.listdir(dirname) if include(f)] for f in files: src = os.path.join(dirname, f) dst = os.path.join(binpath, f) if dst != context.env_exe: # already done, above copier(src, dst) dirname = os.path.join(dirname, subdir) if os.path.isdir(dirname): files = [f for f in os.listdir(dirname) if include(f)] for f in files: src = os.path.join(dirname, f) dst = os.path.join(binpath, f) copier(src, dst) # copy init.tcl over 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 _setup_pip(self, context): """Installs or upgrades pip in a virtual environment""" # We run ensurepip in isolated mode to avoid side effects from # environment vars, the current directory and anything else # intended for the global Python environment cmd = [context.env_exe, '-Im', 'ensurepip', '--upgrade', '--default-pip'] subprocess.check_output(cmd, 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. """ text = text.replace('__VENV_DIR__', context.env_dir) text = text.replace('__VENV_NAME__', context.env_name) text = text.replace('__VENV_PROMPT__', context.prompt) text = text.replace('__VENV_BIN_NAME__', context.bin_name) text = text.replace('__VENV_PYTHON__', context.env_exe) 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: 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'): 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 create(env_dir, system_site_packages=False, clear=False, symlinks=False, with_pip=False, prompt=None): """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) builder.create(env_dir) def main(args=None): compatible = True if sys.version_info < (3, 3): compatible = False elif not hasattr(sys, 'base_prefix'): compatible = False if not compatible: raise ValueError('This script is only for use with Python >= 3.3') else: 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.') 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) 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) PK!4S5S5#__pycache__/__init__.cpython-36.pycnu[3  fH@sdZddlZddlZddlZddlZddlZddlZejeZ GdddZ dddZ ddd Z ed krd Z ye dZ Wn4ek rZzed eejd WYddZ[XnXeje dS)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 2/opt/alt/python36/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 create3s       zEnvBuilder.createcCs`xZtj|D]L}tjj||}tjj|s6tjj|rBtj|q tjj|r tj |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryMs   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 rUsN       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_setupcCsJ|jd|j}|jd|j}|jd|j}|jd|j}|jd|j}|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__)replacerr5rr@rA)r textrr r r replace_variabless zEnvBuilder.replace_variablesc!Cs|j}t|}xtj|D]x\}}}||kr`x,|ddD]}|dtjfkr>|j|q>Wqx2|D](} tjj|| } ||djtj dd} | s|} ntjj|f| } tjj | stj | tjj| | } t | d} | j }WdQRX| jds^y$|jd}|j||}|jd}Wn6tk r\}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#rIreadrPdecoderoencode UnicodeErrorrWrXrJrZcopymode)r rrrDZplenrerfrdr%rKZsrcfilercZdstdirZdstfiledataer r r rl"s@        zEnvBuilder.install_scripts)FFFFFN)F)__name__ __module__ __qualname____doc__r rr!rrr r=rSr]rrrrrorlr r r r rs  8  3  rFcCs 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)r~Zloggingr rrhr7r2Z getLoggerr{rWrrrZrcrVrzprintrgexitr r r r s* C  H$PK!oE~$$)__pycache__/__init__.cpython-36.opt-2.pycnu[3 2aH@sddlZddlZddlZddlZddlZddlZejeZGdddZ d ddZ dddZ ed krd Z ye dZ Wn4e k 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 -/opt/alt/python36/lib64/python3.6/__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 create3s       zEnvBuilder.createcCs`xZtj|D]L}tjj||}tjj|s6tjj|rBtj|q tjj|r tj |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryMs   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__win32ZScriptsZIncludeLibz site-packagesbinincludelibz python%d.%d posixlib64l)r rr"rr!typesSimpleNamespacersplitenv_namerenvironsysplatform executabler python_dirZ python_exer version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)r rr&rrenvr:dirnameZexenameZbinnameZincpathZlibpathrZ link_pathbinpathr r r rUsN       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;rr8r<)r rrfZinclr r r rs zEnvBuilder.create_configurationntcCs(|jdrd}n|jdo"|jd}|S)N.pyd.dllTpythonz.exe)rNrO)endswith startswith)r rLresultr 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)NrMirPpython3T)r\ZDLLscsg|]}|r|qSr r ).0rL)r-r r sz+EnvBuilder.setup_python..csg|]}|r|qSr r )r_rL)r-r r r`szinit.tclr+)rPr^)r@rBr]r:r;r r>rrchmodrr"rTrrwalkrUrr#rrY)r rrErcopierrDsuffixZsubdirfilesrLrZr[rootdirsZtcldirr )r-r rsN              zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)Nz-ImZ ensurepipz --upgradez --default-pip)stderr)rB subprocessZ check_outputZSTDOUT)r rcmdr r r rs zEnvBuilder._setup_pipcCs2tjjtjjt}tjj|d}|j||dS)Nscripts)r rrrD__file__rinstall_scripts)r rrr r r rs zEnvBuilder.setup_scriptscCsdS)Nr )r rr r r rszEnvBuilder.post_setupcCsJ|jd|j}|jd|j}|jd|j}|jd|j}|jd|j}|S)NZ __VENV_DIR__Z __VENV_NAME__Z__VENV_PROMPT__Z__VENV_BIN_NAME__Z__VENV_PYTHON__)replacerr6rrArB)r textrr r r replace_variabless zEnvBuilder.replace_variablesc!Cs|j}t|}xtj|D]x\}}}||kr`x,|ddD]}|dtjfkr>|j|q>Wqx2|D](} tjj|| } ||djtj dd} | s|} ntjj|f| } tjj | stj | tjj| | } t | d} | j }WdQRX| jds^y$|jd}|j||}|jd}Wn6tk r\}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 rbr>rrrr5sepr"r#rJreadrQdecoderpencode UnicodeErrorrWrXrKrZcopymode)r rrrEZplenrfrgrer%rLZsrcfilerdZdstdirZdstfiledataer r r rm"s@        zEnvBuilder.install_scripts)FFFFFN)F)__name__ __module__ __qualname__r rr!rrr r>rTr]rrrrrprmr r r r rs 8  3  rFcCs 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)+NTrIF 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.)prog descriptionepilogrgZENV_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.)defaultactiondestrrMz --symlinksrz[Try to use symlinks rather than copies, when symlinks are not the default for the platform.z--copies 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)rIrI)r8r<hasattrr$argparseArgumentParserr| add_argumentr r>add_mutually_exclusive_group parse_argsrrrrrrrrgr) argsZ compatiblerparserZ use_symlinksgroupoptionsrr%r r r mainZs\             r__main__r'z Error: %s)file)FFFFN)N)Zloggingr rrir8r3Z getLoggerr|rWrrrZrcrVr{printrhexitr r r r s( C  H$PK!qPP)__pycache__/__main__.cpython-36.opt-1.pycnu[3  f@sjddlZddlmZdZyedZWn4ek rZZzedeejdWYddZ[XnXejedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python36/lib64/python3.6/venv/__main__.pys $PK!CxKK)__pycache__/__main__.cpython-36.opt-2.pycnu[3 2a@sjddlZddlmZdZyedZWn4ek rZZzedeejdWYddZ[XnXejedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r -/opt/alt/python36/lib64/python3.6/__main__.pys $PK!h 5 5)__pycache__/__init__.cpython-36.opt-1.pycnu[3  fH@sdZddlZddlZddlZddlZddlZddlZejeZ GdddZ dddZ ddd Z ed krd Z ye dZ Wn4ek rZzed eejd WYddZ[XnXeje dS)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 2/opt/alt/python36/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 create3s       zEnvBuilder.createcCs`xZtj|D]L}tjj||}tjj|s6tjj|rBtj|q tjj|r tj |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryMs   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 rUsN       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_setupcCsJ|jd|j}|jd|j}|jd|j}|jd|j}|jd|j}|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__)replacerr5rr@rA)r textrr r r replace_variabless zEnvBuilder.replace_variablesc!Cs|j}t|}xtj|D]x\}}}||kr`x,|ddD]}|dtjfkr>|j|q>Wqx2|D](} tjj|| } ||djtj dd} | s|} ntjj|f| } tjj | stj | tjj| | } t | d} | j }WdQRX| jds^y$|jd}|j||}|jd}Wn6tk r\}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#rIreadrPdecodernencode UnicodeErrorrVrWrJrZcopymode)r rrrDZplenrdrercr%rKZsrcfilerbZdstdirZdstfiledataer r r rk"s@        zEnvBuilder.install_scripts)FFFFFN)F)__name__ __module__ __qualname____doc__r rr!rrr r=rSr\rrrrrnrkr r r r rs  8  3  rFcCs 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$argparseArgumentParserrz add_argumentr r=Zadd_mutually_exclusive_group parse_argsrrrrrrrrer) argsZ compatiblerparserZ use_symlinksgroupZoptionsr~r%r r r mainZs\             r__main__r'z Error: %s)file)FFFFN)N)r}Zloggingr rrgr7r2Z getLoggerrzrVrrrZrcrUryprintrfexitr r r r s* C  H$PK!qPP#__pycache__/__main__.cpython-36.pycnu[3  f@sjddlZddlmZdZyedZWn4ek rZZzedeejdWYddZ[XnXejedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python36/lib64/python3.6/venv/__main__.pys $PK!ZZ)__pycache__/__main__.cpython-39.opt-2.pycnu[a XC?h @slddlZddlmZdZzedZWn6ey\ZzedeejdWYdZ[n dZ[00eedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python39/lib64/python3.9/venv/__main__.pys (PK!΄'..)__pycache__/__init__.cpython-39.opt-2.pycnu[a XC?hC_ @sddlZddlZddlZddlZddlZddlZddlZddlZdZe e Z GdddZ dddZ ddd Ze d krd ZzedZWn6eyZzed eejd WYdZ[n dZ[00eedS)N)pipZ setuptoolsc@seZdZdddZddZddZd d Zd d Zej d krHd ddZ n d!ddZ ddZ ddZ ddZ ddZddZddZddZdS)" EnvBuilderFNcCsF||_||_||_||_||_|dkr6tjt}||_ ||_ dS)N.) system_site_packagesclearsymlinksupgradewith_pipospathbasenamegetcwdprompt upgrade_deps)selfrrrrr rrr2/opt/alt/python39/lib64/python3.9/venv/__init__.py__init__/szEnvBuilder.__init__cCstj|}||}|j}d|_|||||jrF|||j s`| || ||rtd|_|||j r| |dS)NFT)r r abspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontextZtrue_system_site_packagesrrrcreate<s         zEnvBuilder.createcCs\t|D]L}tj||}tj|s4tj|r@t|q tj|r t |q dSN) r listdirr joinislinkisfileremoveisdirshutilZrmtree)rr fnrrrclear_directoryXs   zEnvBuilder.clear_directorycCsdd}tj|r$|jr$||t}||_tj|d|_ |j durT|j n|j }d||_ ||t j }tjtj |\}}||_||_||_t jdkrd}d} tj|dd } n(d }d } tj|d d t jddd } tj|| |_} || || t jdkrXtjdkrXt jdkrXtj|d} tj| sXtd | tj|||_} ||_tj| ||_|| |j|_t jdkrtj|j}tj|tj|jkrtd|j|||_|S)NcSs@tj|st|n$tj|s0tj|r.create_if_neededz(%s) Zwin32ZScriptsZIncludeLibz site-packagesbinZincludelibz python%d.%dlposixdarwinZlib64zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s") r r r)rr(typesSimpleNamespacersplitenv_namersys_base_executabler executable python_dirZ python_exeplatformr! version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe env_exec_cmdrealpathnormcaseloggerwarning)rrr-rrr;dirnameZexenameZbinnameZincpathZlibpathr Z link_pathbinpathZ real_env_exerrrr`s\      zEnvBuilder.ensure_directoriescCstj|jd|_}t|dddt}|d|j|jrBd}nd}|d||d t j dd |j dur|d |j d Wdn1s0YdS) Nz pyvenv.cfgwutf-8)encodingz home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d z prompt =  ) r r r!rZcfg_pathopenwriter<rr9r>r)rrr fZinclrrrrs  zEnvBuilder.create_configurationntcCs||j }|shz6tj|s@|r4ttj||n t||Wn$tyftd||d}Yn0|rxt ||dS)NUnable to symlink %r to %rT) rr r r"rAr ExceptionrHrIr&copyfile)rsrcdstrelative_symlinks_okZ force_copyrrrsymlink_or_copys   zEnvBuilder.symlink_or_copycCsZtj|otj| }|jr~|s~tj|s~z,|rLttj||n t||WdSty|t d||Yn0tj tj|\}}tj tj tdd||}tdstj|s"|drd|}|dd}|dkrd}n|d krd }tj tj |||}n|}tj|sJ|sFt d |dSt||dS) NrVscriptsrUTZ_dpythonZ venvlauncherZpythonwZ venvwlauncherzUnable to copy %r)r r lexistsr)rr"rAr rWrHrIsplitextr!rJ__file__ sysconfigis_python_buildr#endswithr&rX)rrYrZr[Zbad_srcr ZextZsrcfnrrrr\s<      cCs|j}|j}|j}|j}tjdkr||j|tj|sFt |ddddt j dfD]F}tj ||}tj |s\||j|ddtj|s\t |dq\n$|jrd d t|D}tdrd d |D}n hd }tj|j}|||D]6}tj ||} tj| r|| tj ||qtdrt|jD]z\} } } d | vrPtj| } tj |jd| } tj | st| tj | d } tj | d }t| |q̐qPdS)NrUir_Zpython3zpython3.r.T)r[cSs,g|]$}tjtj|ddvr|qS)r.).exez.dll)r r rGra.0rTrrr sz+EnvBuilder.setup_python..cSs"g|]}tj|dr|qS))r_Z vcruntime)r r rG startswithrgrrrris>z python.exez python_d.exez pythonw.exez pythonw_d.exezinit.tclr/)rBrDr\r<r r@r;r r"chmodr9r>r!r)rr rcrdr addr`walkrr*r&rX)rrrKr ZcopierrJsuffixsuffixesZbase_exerYrootdirsfilesZtcldirrZrrrrsP             zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)Nz-ImZ ensurepip --upgradez --default-pip)stderr)rE subprocessZ check_outputZSTDOUTrrcmdrrrr3s zEnvBuilder._setup_pipcCs2tjtjt}tj|d}|||dS)Nr])r r rrJrbr!install_scripts)rrr rrrr<s zEnvBuilder.setup_scriptscCsdSrr)rrrrrrKszEnvBuilder.post_setupc s|j|j|j|j|jd}dd}dd}tj|j}|drF|n|drV|ntjfdd | D}| D]\}}| ||}qz|S) N)Z __VENV_DIR__Z __VENV_NAME__Z__VENV_PROMPT__Z__VENV_BIN_NAME__Z__VENV_PYTHON__cSs|dd}d|dS)N'z'')replacesrrr quote_ps1hs z/EnvBuilder.replace_variables..quote_ps1cSs|Srrr{rrr quote_batrsz/EnvBuilder.replace_variables..quote_batz.ps1z.batcsi|]\}}||qSrr)rhkeyr|quoterr z0EnvBuilder.replace_variables..) rr8rrCrDshlexr script_pathreitemsrz) rtextrZ replacementsr}r~rrZquotedrrrreplace_variablesUs&    zEnvBuilder.replace_variablesc Cs|j}t|}t|D]\}}}||krX|ddD]}|dtjfvr8||q8q|D]~} tjdkr| dr| drq\tj || } ||d tj dd} | s|} ntjj |g| R} tj | st | tj | | } t| d} | }Wdn1s0Y| ds| |_z$|d}|||}|d}Wn8ty}zd}td| |WYd}~n d}~00|dur\t| d } | |Wdn1s0Yt| | q\qdS) NcommonrUr_)rfz.pdbr2rbrMz+unable to copy script %r, may be binary: %swb)rBlenr rmr@r$rjrer r!r7sepr)r*rRreadrdecoderencode UnicodeErrorrHrIrSr&Zcopymode)rrr rKZplenrprqrrr,rTZsrcfilernZdstdirZdstfiledataerrrrxsL      (    *zEnvBuilder.install_scriptscCs@tdtd|j|jddddg}|tt|dS)Nz Upgrading z packages in z-mrZinstallrs)rHdebugCORE_VENV_DEPSrBrEextendruZ check_callrvrrrrs  zEnvBuilder.upgrade_dependencies)FFFFFNF)F)F)__name__ __module__ __qualname__rrr(rrr r@r\rrrrrrxrrrrrrs$ B   +=  03rFcCs"t||||||d}||dS)N)rrrr rr)rr)rrrrr rrbuilderrrrrs rc Csd}tjdkrd}nttds"d}|s2tdnLddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}| }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'|jd(ddd)d* d+ t d||}|jrB|jrBtd,t|j|j|j|j|j|j|jd-}|jD]}||qldS).NT)rPrPF 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 descriptionZepilogrqZENV_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.)defaultactiondestrrUz --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.rsrzlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.z --without-pipr z]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rz--upgrade-depsrz;Upgrade core dependencies: {} to the latest version in PyPI z1you cannot supply --upgrade and --clear together.)rrrrr rr)r9r>hasattrr+argparseArgumentParserr add_argumentr r@Zadd_mutually_exclusive_groupformatr!r parse_argsrrrrrr rrrqr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr,rrrmains~           r__main__r.z Error: %s)file)FFFFNF)N)Zloggingr r&rur9rcr5rrZ getLoggerrrHrrrZrcrWrprintrtexitrrrrs2 /  N(PK!ZZ#__pycache__/__main__.cpython-39.pycnu[a XC?h @slddlZddlmZdZzedZWn6ey\ZzedeejdWYdZ[n dZ[00eedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python39/lib64/python3.9/venv/__main__.pys (PK!WAWA#__pycache__/__init__.cpython-39.pycnu[a XC?hC_ @sdZddlZddlZddlZddlZddlZddlZddlZddlZdZ e e Z GdddZ dddZdd d Ze d krd ZzedZWn6eyZzed eejdWYdZ[n dZ[00eedS)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)pipZ setuptoolsc@seZdZdZd ddZddZdd Zd d Zd d Ze j dkrLd!ddZ n d"ddZ 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. :param upgrade_deps: Update the base venv modules to the latest on PyPI FNcCsF||_||_||_||_||_|dkr6tjt}||_ ||_ dS)N.) system_site_packagesclearsymlinksupgradewith_pipospathbasenamegetcwdprompt upgrade_deps)selfrrrrr rrr2/opt/alt/python39/lib64/python3.9/venv/__init__.py__init__/szEnvBuilder.__init__cCstj|}||}|j}d|_|||||jrF|||j s`| || ||rtd|_|||j r| |dS)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN)r r abspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontextZtrue_system_site_packagesrrrcreate<s         zEnvBuilder.createcCs\t|D]L}tj||}tj|s4tj|r@t|q tj|r t |q dSN) r listdirr joinislinkisfileremoveisdirshutilZrmtree)rr fnrrrclear_directoryXs   zEnvBuilder.clear_directorycCsdd}tj|r$|jr$||t}||_tj|d|_ |j durT|j n|j }d||_ ||t j }tjtj |\}}||_||_||_t jdkrd}d} tj|d d } n(d }d } tj|d dt jddd } tj|| |_} || || t jdkrXtjdkrXt jdkrXtj|d} tj| sXtd | tj|||_} ||_tj| ||_|| |j|_t jdkrtj|j}tj|tj|jkrtd|j|||_|S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. cSs@tj|st|n$tj|s0tj|r.create_if_neededNz(%s) Zwin32ZScriptsZIncludeLibz site-packagesbinZincludelibz python%d.%dlposixdarwinZlib64zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s") r r r)rr(typesSimpleNamespacersplitenv_namersys_base_executabler executable python_dirZ python_exeplatformr! version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe env_exec_cmdrealpathnormcaseloggerwarning)rrr-rrr;dirnameZexenameZbinnameZincpathZlibpathr Z link_pathbinpathZ real_env_exerrrr`s\      zEnvBuilder.ensure_directoriescCstj|jd|_}t|dddt}|d|j|jrBd}nd}|d||d t j d d |j d ur|d |j d Wd n1s0Yd 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.cfgwutf-8)encodingz home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d Nz prompt =  ) r r r!rZcfg_pathopenwriter<rr9r>r)rrr fZinclrrrrs  zEnvBuilder.create_configurationntcCs|j }|szRtj|s\|rPtj|tj|ks:Jttj||n t||Wn$tyt d||d}Yn0|rt ||dS)Y Try symlinking a file, and if that fails, fall back to copying. Unable to symlink %r to %rTN) rr r r"rJrAr ExceptionrHrIr&copyfile)rsrcdstrelative_symlinks_okZ force_copyrrrsymlink_or_copys   zEnvBuilder.symlink_or_copycCsztj|otj| }|jr|stj|szH|rhtj|tj|ksRJttj||n t||WdSt yt d||Yn0tj tj|\}}tj tjtdd||}tdstj|sB|drd|}|dd}|dkrd }n|d kr&d }tj tj|||}n|}tj|sj|sft d |dSt||dS) rVNrWscriptsrUTZ_dpythonZ venvlauncherZpythonwZ venvwlauncherzUnable to copy %r)r r lexistsr)rr"rJrAr rXrHrIsplitextr!__file__ sysconfigis_python_buildr#endswithr&rY)rrZr[r\Zbad_srcr ZextZsrcfnrrrr]s>       cCs|j}|j}|j}|j}tjdkr||j|tj|sFt |ddddt j dfD]F}tj ||}tj |s\||j|ddtj|s\t |dq\n$|jrd d t|D}tdrd d |D}n hd }tj|j}|||D]6}tj ||} tj| r|| tj ||qtdrt|jD]z\} } } d | vrPtj| } tj |jd| } tj | st| tj | d } tj | d }t| |q̐qPdS)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rUir`Zpython3zpython3.r.T)r\cSs,g|]$}tjtj|ddvr|qS)r.).exez.dll)r r rGrb.0rTrrr sz+EnvBuilder.setup_python..cSs"g|]}tj|dr|qS))r`Z vcruntime)r r rG startswithrhrrrrjs>z python.exez python_d.exez pythonw.exez pythonw_d.exezinit.tclr/N)rBrDr]r<r r@r;r r"chmodr9r>r!r)rr rdrer addrawalkrr*r&rY)rrrKr ZcopierrJsuffixsuffixesZbase_exerZrootdirsfilesZtcldirr[rrrrsP             zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepip --upgradez --default-pip)stderrN)rE subprocessZ check_outputZSTDOUTrrcmdrrrr3s zEnvBuilder._setup_pipcCs2tjtjt}tj|d}|||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. r^N)r r rrJrcr!install_scripts)rrr rrrr<s 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)rrrrrrKszEnvBuilder.post_setupc s|j|j|j|j|jd}dd}dd}tj|j}|drF|n|drV|ntjfdd | D}| D]\}}| ||}qz|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|dd}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'')replacesrrr quote_ps1hs z/EnvBuilder.replace_variables..quote_ps1cSs|Srrr|rrr quote_batrsz/EnvBuilder.replace_variables..quote_batz.ps1z.batcsi|]\}}||qSrr)rikeyr}quoterr z0EnvBuilder.replace_variables..) rr8rrCrDshlexr script_pathrfitemsr{) rtextrZ replacementsr~rrrZquotedrrrreplace_variablesUs&    zEnvBuilder.replace_variablesc Cs|j}t|}t|D]\}}}||krX|ddD]}|dtjfvr8||q8q|D]~} tjdkr| dr| drq\tj || } ||d tj dd} | s|} ntjj |g| R} tj | st | tj | | } t| d} | }Wdn1s0Y| ds| |_z$|d}|||}|d}Wn8ty}zd}td | |WYd}~n d}~00|dur\t| d } | |Wdn1s0Yt| | q\qdS) 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. NcommonrUr`)rgz.pdbr2rbrMz+unable to copy script %r, may be binary: %swb)rBlenr rnr@r$rkrfr r!r7sepr)r*rRreadrdecoderencode UnicodeErrorrHrIrSr&Zcopymode)rrr rKZplenrqrrrsr,rTZsrcfileroZdstdirZdstfiledataerrrrysL      (    *zEnvBuilder.install_scriptscCs@tdtd|j|jddddg}|tt|dS)Nz Upgrading z packages in z-mrZinstallrt)rHdebugCORE_VENV_DEPSrBrEextendrvZ check_callrwrrrrs  zEnvBuilder.upgrade_dependencies)FFFFFNF)F)F)__name__ __module__ __qualname____doc__rrr(rrr r@r]rrrrrryrrrrrrs& B   +=  03rFcCs"t||||||d}||dS)z,Create a virtual environment in a directory.)rrrr rrN)rr)rrrrr rrbuilderrrrrs rc Csd}tjdkrd}nttds"d}|s2tdnLddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}| }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'|jd(ddd)d* d+ t d||}|jrB|jrBtd,t|j|j|j|j|j|j|jd-}|jD]}||qldS).NT)rPrPF 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 descriptionZepilogrrZENV_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.)defaultactiondestrrUz --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.rtrzlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.z --without-pipr z]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rz--upgrade-depsrz;Upgrade core dependencies: {} to the latest version in PyPI z1you cannot supply --upgrade and --clear together.)rrrrr rr)r9r>hasattrr+argparseArgumentParserr add_argumentr r@Zadd_mutually_exclusive_groupformatr!r parse_argsrrrrrr rrrrr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr,rrrmains~           r__main__r.z Error: %s)file)FFFFNF)N)rZloggingr r&rvr9rdr5rrZ getLoggerrrHrrrZrcrXrprintruexitrrrrs4 /  N(PK!6AA)__pycache__/__init__.cpython-39.opt-1.pycnu[a XC?hC_ @sdZddlZddlZddlZddlZddlZddlZddlZddlZdZ e e Z GdddZ dddZdd d Ze d krd ZzedZWn6eyZzed eejdWYdZ[n dZ[00eedS)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)pipZ setuptoolsc@seZdZdZd ddZddZdd Zd d Zd d Ze j dkrLd!ddZ n d"ddZ 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. :param upgrade_deps: Update the base venv modules to the latest on PyPI FNcCsF||_||_||_||_||_|dkr6tjt}||_ ||_ dS)N.) system_site_packagesclearsymlinksupgradewith_pipospathbasenamegetcwdprompt upgrade_deps)selfrrrrr rrr2/opt/alt/python39/lib64/python3.9/venv/__init__.py__init__/szEnvBuilder.__init__cCstj|}||}|j}d|_|||||jrF|||j s`| || ||rtd|_|||j r| |dS)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN)r r abspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setuprupgrade_dependencies)renv_dircontextZtrue_system_site_packagesrrrcreate<s         zEnvBuilder.createcCs\t|D]L}tj||}tj|s4tj|r@t|q tj|r t |q dSN) r listdirr joinislinkisfileremoveisdirshutilZrmtree)rr fnrrrclear_directoryXs   zEnvBuilder.clear_directorycCsdd}tj|r$|jr$||t}||_tj|d|_ |j durT|j n|j }d||_ ||t j }tjtj |\}}||_||_||_t jdkrd}d} tj|d d } n(d }d } tj|d dt jddd } tj|| |_} || || t jdkrXtjdkrXt jdkrXtj|d} tj| sXtd | tj|||_} ||_tj| ||_|| |j|_t jdkrtj|j}tj|tj|jkrtd|j|||_|S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. cSs@tj|st|n$tj|s0tj|r.create_if_neededNz(%s) Zwin32ZScriptsZIncludeLibz site-packagesbinZincludelibz python%d.%dlposixdarwinZlib64zActual environment location may have moved due to redirects, links or junctions. Requested location: "%s" Actual location: "%s") r r r)rr(typesSimpleNamespacersplitenv_namersys_base_executabler executable python_dirZ python_exeplatformr! version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe env_exec_cmdrealpathnormcaseloggerwarning)rrr-rrr;dirnameZexenameZbinnameZincpathZlibpathr Z link_pathbinpathZ real_env_exerrrr`s\      zEnvBuilder.ensure_directoriescCstj|jd|_}t|dddt}|d|j|jrBd}nd}|d||d t j d d |j d ur|d |j d Wd n1s0Yd 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.cfgwutf-8)encodingz home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d Nz prompt =  ) r r r!rZcfg_pathopenwriter<rr9r>r)rrr fZinclrrrrs  zEnvBuilder.create_configurationntcCs||j }|shz6tj|s@|r4ttj||n t||Wn$tyftd||d}Yn0|rxt ||dS)Y Try symlinking a file, and if that fails, fall back to copying. Unable to symlink %r to %rTN) rr r r"rAr ExceptionrHrIr&copyfile)rsrcdstrelative_symlinks_okZ force_copyrrrsymlink_or_copys   zEnvBuilder.symlink_or_copycCsZtj|otj| }|jr~|s~tj|s~z,|rLttj||n t||WdSty|t d||Yn0tj tj|\}}tj tj tdd||}tdstj|s"|drd|}|dd}|dkrd }n|d krd }tj tj |||}n|}tj|sJ|sFt d |dSt||dS) rVNrWscriptsrUTZ_dpythonZ venvlauncherZpythonwZ venvwlauncherzUnable to copy %r)r r lexistsr)rr"rAr rXrHrIsplitextr!rJ__file__ sysconfigis_python_buildr#endswithr&rY)rrZr[r\Zbad_srcr ZextZsrcfnrrrr]s<      cCs|j}|j}|j}|j}tjdkr||j|tj|sFt |ddddt j dfD]F}tj ||}tj |s\||j|ddtj|s\t |dq\n$|jrd d t|D}tdrd d |D}n hd }tj|j}|||D]6}tj ||} tj| r|| tj ||qtdrt|jD]z\} } } d | vrPtj| } tj |jd| } tj | st| tj | d } tj | d }t| |q̐qPdS)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rUir`Zpython3zpython3.r.T)r\cSs,g|]$}tjtj|ddvr|qS)r.).exez.dll)r r rGrb.0rTrrr sz+EnvBuilder.setup_python..cSs"g|]}tj|dr|qS))r`Z vcruntime)r r rG startswithrhrrrrjs>z python.exez python_d.exez pythonw.exez pythonw_d.exezinit.tclr/N)rBrDr]r<r r@r;r r"chmodr9r>r!r)rr rdrer addrawalkrr*r&rY)rrrKr ZcopierrJsuffixsuffixesZbase_exerZrootdirsfilesZtcldirr[rrrrsP             zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepip --upgradez --default-pip)stderrN)rE subprocessZ check_outputZSTDOUTrrcmdrrrr3s zEnvBuilder._setup_pipcCs2tjtjt}tj|d}|||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. r^N)r r rrJrcr!install_scripts)rrr rrrr<s 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)rrrrrrKszEnvBuilder.post_setupc s|j|j|j|j|jd}dd}dd}tj|j}|drF|n|drV|ntjfdd | D}| D]\}}| ||}qz|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|dd}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'')replacesrrr quote_ps1hs z/EnvBuilder.replace_variables..quote_ps1cSs|Srrr|rrr quote_batrsz/EnvBuilder.replace_variables..quote_batz.ps1z.batcsi|]\}}||qSrr)rikeyr}quoterr z0EnvBuilder.replace_variables..) rr8rrCrDshlexr script_pathrfitemsr{) rtextrZ replacementsr~rrrZquotedrrrreplace_variablesUs&    zEnvBuilder.replace_variablesc Cs|j}t|}t|D]\}}}||krX|ddD]}|dtjfvr8||q8q|D]~} tjdkr| dr| drq\tj || } ||d tj dd} | s|} ntjj |g| R} tj | st | tj | | } t| d} | }Wdn1s0Y| ds| |_z$|d}|||}|d}Wn8ty}zd}td | |WYd}~n d}~00|dur\t| d } | |Wdn1s0Yt| | q\qdS) 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. NcommonrUr`)rgz.pdbr2rbrMz+unable to copy script %r, may be binary: %swb)rBlenr rnr@r$rkrfr r!r7sepr)r*rRreadrdecoderencode UnicodeErrorrHrIrSr&Zcopymode)rrr rKZplenrqrrrsr,rTZsrcfileroZdstdirZdstfiledataerrrrysL      (    *zEnvBuilder.install_scriptscCs@tdtd|j|jddddg}|tt|dS)Nz Upgrading z packages in z-mrZinstallrt)rHdebugCORE_VENV_DEPSrBrEextendrvZ check_callrwrrrrs  zEnvBuilder.upgrade_dependencies)FFFFFNF)F)F)__name__ __module__ __qualname____doc__rrr(rrr r@r]rrrrrryrrrrrrs& B   +=  03rFcCs"t||||||d}||dS)z,Create a virtual environment in a directory.)rrrr rrN)rr)rrrrr rrbuilderrrrrs rc Csd}tjdkrd}nttds"d}|s2tdnLddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}| }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'|jd(ddd)d* d+ t d||}|jrB|jrBtd,t|j|j|j|j|j|j|jd-}|jD]}||qldS).NT)rPrPF 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 descriptionZepilogrrZENV_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.)defaultactiondestrrUz --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.rtrzlUpgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place.z --without-pipr z]Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default))rrrrz--promptz;Provides an alternative prompt prefix for this environment.)rz--upgrade-depsrz;Upgrade core dependencies: {} to the latest version in PyPI z1you cannot supply --upgrade and --clear together.)rrrrr rr)r9r>hasattrr+argparseArgumentParserr add_argumentr r@Zadd_mutually_exclusive_groupformatr!r parse_argsrrrrrr rrrrr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr,rrrmains~           r__main__r.z Error: %s)file)FFFFNF)N)rZloggingr r&rvr9rdr5rrZ getLoggerrrHrrrZrcrXrprintruexitrrrrs4 /  N(PK!ZZ)__pycache__/__main__.cpython-39.opt-1.pycnu[a XC?h @slddlZddlmZdZzedZWn6ey\ZzedeejdWYdZ[n dZ[00eedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python39/lib64/python3.9/venv/__main__.pys (PK!Fnnscripts/posix/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 # This should detect bash and zsh, which have a hash command that must # be called to get it to forget past commands. Without forgetting # past commands the $PATH changes we made may not be respected if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then hash -r fi if [ -n "$_OLD_VIRTUAL_PS1" ] ; then PS1="$_OLD_VIRTUAL_PS1" export PS1 unset _OLD_VIRTUAL_PS1 fi unset VIRTUAL_ENV if [ ! "$1" = "nondestructive" ] ; then # Self destruct! unset -f deactivate fi } # unset irrelavent variables deactivate nondestructive VIRTUAL_ENV="__VENV_DIR__" export VIRTUAL_ENV _OLD_VIRTUAL_PATH="$PATH" PATH="$VIRTUAL_ENV/__VENV_BIN_NAME__:$PATH" export PATH # 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" if [ "x__VENV_PROMPT__" != x ] ; then PS1="__VENV_PROMPT__$PS1" else if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then # special case for Aspen magic directories # see http://www.zetadev.com/software/aspen/ PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1" else PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1" fi fi export PS1 fi # This should detect bash and zsh, which have a hash command that must # be called to get it to forget past commands. Without forgetting # past commands the $PATH changes we made may not be respected if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then hash -r fi PK!$ ??#__pycache__/__init__.cpython-34.pyonu[ e fL@s dZddlZddlZddlZddlZddlZddlZejeZ GdddZ ddddddZ ddd Z ed kr d Z ye dZ Wn<ek rZzed ed ejWYddZ[XnXeje ndS)a Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. usage: python -m venv [-h] [--system-site-packages] [--symlinks] [--clear] [--upgrade] ENV_DIR [ENV_DIR ...] Creates virtual Python environments in one or more target directories. positional arguments: ENV_DIR A directory to create the environment in. optional arguments: -h, --help show this help message and exit --system-site-packages Give the virtual environment access to the system site-packages dir. --symlinks Attempt to symlink rather than copy. --clear Delete the environment directory if it already exists. If not specified and the directory exists, an error is raised. --upgrade Upgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place. --without-pip Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default) Nc@seZdZdZdddddddZddZddZd d Zd d Ze j d kr{ddZ ndddZ ddZ ddZddZddZddZddZdS) EnvBuilderan 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 and the target directory exists, it is deleted. Otherwise, if the target directory exists, an error is raised. :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 FcCs1||_||_||_||_||_dS)N)system_site_packagesclearsymlinksupgradewith_pip)selfrrrrrr 2/opt/alt/python34/lib64/python3.4/venv/__init__.py__init__As     zEnvBuilder.__init__cCs~tjj|}|j|}|j||j||jrT|j|n|jsz|j ||j |ndS)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. N) ospathabspathensure_directoriescreate_configuration setup_pythonr _setup_pipr setup_scripts post_setup)renv_dircontextr r r createIs     zEnvBuilder.createcCsxtj|D]q}tjj||}tjj|sOtjj|r_tj|qtjj|rtj |qqWdS)N) r listdirr joinislinkisfileremoveisdirshutilZrmtree)rr fnr r r clear_directoryZs $zEnvBuilder.clear_directorycCsNdd}tjj|r7|jr7|j|ntj}||_tjj|d|_ d|j |_ ||tj }t j dkrd|krtj d}n t j}tjjtjj|\}}||_||_||_t j dkr1d}d } tjj|d d } n8d }d } tjj|ddt jddd } tjj|| |_} || || t jdkrtjdkrt j dkrtjj|d} tjj| stjd| qntjj|||_} ||_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|s"tj|n7tjj|sFtjj|rYtd|ndS)NzUnable to create directory %r)r r existsmakedirsrr ValueError)dr r r create_if_neededjs$z7EnvBuilder.ensure_directories..create_if_neededz(%s) darwin__PYVENV_LAUNCHER__win32ZScriptsIncludeLibz site-packagesbinincludelibz python%d.%dN posixlib64l)r r r!rr typesSimpleNamespacersplitenv_namepromptenvironsysplatform executabler python_dirZ python_exer version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)rrr%renvr;dirnameZexenameZbinnameZincpathZlibpathr Z link_pathbinpathr r r rbsL      $        zEnvBuilder.ensure_directoriesc Cstjj|jd|_}t|dddb}|jd|j|jr]d}nd}|jd||jd t j d d Wd QXd 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.cfgwencodingzutf-8z home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d N) r r rrZcfg_pathopenwriter<rr9r=)rrr fZinclr r r rs   zEnvBuilder.create_configurationntcCs:|jdrd}n|jdo3|jd}|S)N.pyd.dllTpythonz.exe)rOrP)endswith startswith)rrMresultr r r include_binarys zEnvBuilder.include_binaryc Cs|j }|syNtjj|s]|rJtjtjj||q]tj||nWqtk rtjd||d}YqXn|rt j ||ndS)zQ Try symlinking a file, and if that fails, fall back to copying. zUnable to symlink %r to %rTN) rr r rr@basename Exceptionloggerwarningrcopyfile)rsrcdstrelative_symlinks_okZ force_copyr r r symlink_or_copys  zEnvBuilder.symlink_or_copycs|j}|j}|j}||j||j}tjdkrtjj|shtj |dnxTdD]k}tjj ||}tjj |so||j|ddtjj|stj |dqqoqoWnd}|j fdd tj |D}xW|D]O} tjj || } tjj || } | |jkr|| | qqWtjj ||}tjj|rfd d tj |D}xH|D]=} tjj || } tjj || } || | qWnxtj|jD]\} } }d |krtjj| }tjj |jd |}tjj |s}tj|ntjj | d } tjj |d } tj| | PqqWd S)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rNirQpython3r]TZDLLscs"g|]}|r|qSr r ).0rM)r-r r s z+EnvBuilder.setup_python..cs"g|]}|r|qSr r )r`rM)r-r r ras zinit.tclr+N)zpythonr_)rArCr^r;r<r r?r rchmodrr!rUrrwalkrVrr"rrZ)rrrFr ZcopierrEsuffixZsubdirfilesrMr[r\rootdirsZtcldirr )r-r rsN      " " " zEnvBuilder.setup_pythoncCs2|jddddg}tj|dtjdS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepipz --upgradez --default-pipstderrN)rC subprocessZ check_outputZSTDOUT)rrcmdr r r rs zEnvBuilder._setup_pipcCsGtjjtjjt}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 r rrE__file__rinstall_scripts)rrr r 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 )rrr r r rszEnvBuilder.post_setupcCsm|jd|j}|jd|j}|jd|j}|jd|j}|jd|j}|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__)replacerr6r7rBrC)rtextrr r r replace_variabless zEnvBuilder.replace_variablescCs!|j}t|}xtj|D]\}}}||krx=|ddD]+}|dtjfkrQ|j|qQqQWq%nx|D]} tjj|| } ||djtj dd} | s|} ntjj|| } tjj | stj | ntjj| | } t | d} | j }WdQX| jdred}nld}y%|jd}|j||}Wn>tk r}zd}tjd | |WYdd}~XnX|dk rt | |} | j|WdQXtj| | qqWq%WdS) 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. NZcommonr/rbz.exewbrGzutf-8z+unable to copy script %r, may be binary: %s)rAlenr rcr?rr rr5sepr!r"rKreadrRdecoderpUnicodeDecodeErrorrXrYrLrZcopymode)rrr rFZplenrfrgrer$rMZsrcfilerdZdstdirZdstfiledatamodeer r r rm.sB    &    zEnvBuilder.install_scriptsN)__name__ __module__ __qualname____doc__r rr rrr r?rUr^rrrrrprmr r r r r(s    7  3  rFc Cs2td|d|d|d|}|j|dS)ah Create a virtual environment in a directory. By default, makes the system (global) site-packages dir *un*available to the created environment, and uses copying rather than symlinking for files obtained from the source Python installation. :param env_dir: The target directory to create an environment in. :param system_site_packages: If True, the system (global) site-packages dir is available to the environment. :param clear: If True and the target directory exists, it is deleted. Otherwise, if the target directory exists, an error is raised. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment rrrrN)rr)rrrrrbuilderr r r r`s rc Cs(d}tjd,krd}nttds6d}n|sKtdnddl}|jdtdd d d }|jd d ddddd|jdddddddddtj dkrd}nd}|j }|jdd|dddddd|jdd| dddddd |jd!dddddd"dd#|jd$dddddd%dd&|jd'dd(dddddd)|j |}|j r|j rtd*ntd+|jd"|j d|jd%|j d(|j}x|jD]}|j|q WdS)-NTrJF base_prefixz.This script is only for use with Python >= 3.3rprogZ descriptionzFCreates virtual Python environments in one or more target directories.Zepilogz|Once an environment has been created, you may wish to activate it, e.g. by sourcing an activate script in its bin directory.rgmetavarZENV_DIRnargs+helpz)A directory to create the environment in.z--system-site-packagesdefaultaction store_truedest system_sitezDGive the virtual environment access to the system site-packages dir.rNz --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)z1you cannot supply --upgrade and --clear together.r)rJrJ)r9r=hasattrr#argparseArgumentParserr{ add_argumentr r?Zadd_mutually_exclusive_group parse_argsrrrrrrrgr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr$r r r mainxsV                r__main__r&z Error: %sfile)r~Zloggingr rrir9r3Z getLoggerr{rXrrrrcrWrzprintrhexitr r r r s(      9D  *PK!%*@*@#__pycache__/__init__.cpython-34.pycnu[ e fL@s dZddlZddlZddlZddlZddlZddlZejeZ GdddZ ddddddZ ddd Z ed kr d Z ye dZ Wn<ek rZzed ed ejWYddZ[XnXeje ndS)a Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. usage: python -m venv [-h] [--system-site-packages] [--symlinks] [--clear] [--upgrade] ENV_DIR [ENV_DIR ...] Creates virtual Python environments in one or more target directories. positional arguments: ENV_DIR A directory to create the environment in. optional arguments: -h, --help show this help message and exit --system-site-packages Give the virtual environment access to the system site-packages dir. --symlinks Attempt to symlink rather than copy. --clear Delete the environment directory if it already exists. If not specified and the directory exists, an error is raised. --upgrade Upgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place. --without-pip Skips installing or upgrading pip in the virtual environment (pip is bootstrapped by default) Nc@seZdZdZdddddddZddZddZd d Zd d Ze j d kr{ddZ ndddZ ddZ ddZddZddZddZddZdS) EnvBuilderan 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 and the target directory exists, it is deleted. Otherwise, if the target directory exists, an error is raised. :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 FcCs1||_||_||_||_||_dS)N)system_site_packagesclearsymlinksupgradewith_pip)selfrrrrrr 2/opt/alt/python34/lib64/python3.4/venv/__init__.py__init__As     zEnvBuilder.__init__cCs~tjj|}|j|}|j||j||jrT|j|n|jsz|j ||j |ndS)z Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. N) ospathabspathensure_directoriescreate_configuration setup_pythonr _setup_pipr setup_scripts post_setup)renv_dircontextr r r createIs     zEnvBuilder.createcCsxtj|D]q}tjj||}tjj|sOtjj|r_tj|qtjj|rtj |qqWdS)N) r listdirr joinislinkisfileremoveisdirshutilZrmtree)rr fnr r r clear_directoryZs $zEnvBuilder.clear_directorycCsNdd}tjj|r7|jr7|j|ntj}||_tjj|d|_ d|j |_ ||tj }t j dkrd|krtj d}n t j}tjjtjj|\}}||_||_||_t j dkr1d}d } tjj|d d } n8d }d } tjj|ddt jddd } tjj|| |_} || || t jdkrtjdkrt j dkrtjj|d} tjj| stjd| qntjj|||_} ||_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|s"tj|n7tjj|sFtjj|rYtd|ndS)NzUnable to create directory %r)r r existsmakedirsrr ValueError)dr r r create_if_neededjs$z7EnvBuilder.ensure_directories..create_if_neededz(%s) darwin__PYVENV_LAUNCHER__win32ZScriptsIncludeLibz site-packagesbinincludelibz python%d.%dN posixlib64l)r r r!rr typesSimpleNamespacersplitenv_namepromptenvironsysplatform executabler python_dirZ python_exer version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)rrr%renvr;dirnameZexenameZbinnameZincpathZlibpathr Z link_pathbinpathr r r rbsL      $        zEnvBuilder.ensure_directoriesc Cstjj|jd|_}t|dddb}|jd|j|jr]d}nd}|jd||jd t j d d Wd QXd 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.cfgwencodingzutf-8z home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d N) r r rrZcfg_pathopenwriter<rr9r=)rrr fZinclr r r rs   zEnvBuilder.create_configurationntcCs:|jdrd}n|jdo3|jd}|S)N.pyd.dllTpythonz.exe)rOrP)endswith startswith)rrMresultr r r include_binarys zEnvBuilder.include_binaryc Cs|j }|syxtjj|s|rttjj|tjj|ksUttjtjj||qtj||nWqtk rt j d||d}YqXn|rt j ||ndS)zQ Try symlinking a file, and if that fails, fall back to copying. zUnable to symlink %r to %rTN) rr r rrEAssertionErrorr@basename Exceptionloggerwarningrcopyfile)rsrcdstrelative_symlinks_okZ force_copyr r r symlink_or_copys * zEnvBuilder.symlink_or_copycs|j}|j}|j}||j||j}tjdkrtjj|shtj |dnxTdD]k}tjj ||}tjj |so||j|ddtjj|stj |dqqoqoWnd}|j fdd tj |D}xW|D]O} tjj || } tjj || } | |jkr|| | qqWtjj ||}tjj|rfd d tj |D}xH|D]=} tjj || } tjj || } || | qWnxtj|jD]\} } }d |krtjj| }tjj |jd |}tjj |s}tj|ntjj | d } tjj |d } tj| | PqqWd S)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rNirQpython3r^TZDLLscs"g|]}|r|qSr r ).0rM)r-r r s z+EnvBuilder.setup_python..cs"g|]}|r|qSr r )rarM)r-r r rbs zinit.tclr+N)zpythonr`)rArCr_r;r<r r?r rchmodrr!rUrrwalkrWrr"rr[)rrrFr ZcopierrEsuffixZsubdirfilesrMr\r]rootdirsZtcldirr )r-r rsN      " " " zEnvBuilder.setup_pythoncCs2|jddddg}tj|dtjdS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepipz --upgradez --default-pipstderrN)rC subprocessZ check_outputZSTDOUT)rrcmdr r r rs zEnvBuilder._setup_pipcCsGtjjtjjt}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 r rrE__file__rinstall_scripts)rrr r 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 )rrr r r rszEnvBuilder.post_setupcCsm|jd|j}|jd|j}|jd|j}|jd|j}|jd|j}|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__)replacerr6r7rBrC)rtextrr r r replace_variabless zEnvBuilder.replace_variablescCs!|j}t|}xtj|D]\}}}||krx=|ddD]+}|dtjfkrQ|j|qQqQWq%nx|D]} tjj|| } ||djtj dd} | s|} ntjj|| } tjj | stj | ntjj| | } t | d} | j }WdQX| jdred}nld}y%|jd}|j||}Wn>tk r}zd}tjd | |WYdd}~XnX|dk rt | |} | j|WdQXtj| | qqWq%WdS) 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. NZcommonr/rbz.exewbrGzutf-8z+unable to copy script %r, may be binary: %s)rAlenr rdr?rr rr5sepr!r"rKreadrRdecoderqUnicodeDecodeErrorrYrZrLrZcopymode)rrr rFZplenrgrhrfr$rMZsrcfilereZdstdirZdstfiledatamodeer r r rn.sB    &    zEnvBuilder.install_scriptsN)__name__ __module__ __qualname____doc__r rr rrr r?rUr_rrrrrqrnr r r r r(s    7  3  rFc Cs2td|d|d|d|}|j|dS)ah Create a virtual environment in a directory. By default, makes the system (global) site-packages dir *un*available to the created environment, and uses copying rather than symlinking for files obtained from the source Python installation. :param env_dir: The target directory to create an environment in. :param system_site_packages: If True, the system (global) site-packages dir is available to the environment. :param clear: If True and the target directory exists, it is deleted. Otherwise, if the target directory exists, an error is raised. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment rrrrN)rr)rrrrrbuilderr r r r`s rc Cs(d}tjd,krd}nttds6d}n|sKtdnddl}|jdtdd d d }|jd d ddddd|jdddddddddtj dkrd}nd}|j }|jdd|dddddd|jdd| dddddd |jd!dddddd"dd#|jd$dddddd%dd&|jd'dd(dddddd)|j |}|j r|j rtd*ntd+|jd"|j d|jd%|j d(|j}x|jD]}|j|q WdS)-NTrJF base_prefixz.This script is only for use with Python >= 3.3rprogZ descriptionzFCreates virtual Python environments in one or more target directories.Zepilogz|Once an environment has been created, you may wish to activate it, e.g. by sourcing an activate script in its bin directory.rhmetavarZENV_DIRnargs+helpz)A directory to create the environment in.z--system-site-packagesdefaultaction store_truedest system_sitezDGive the virtual environment access to the system site-packages dir.rNz --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)z1you cannot supply --upgrade and --clear together.r)rJrJ)r9r=hasattrr#argparseArgumentParserr| add_argumentr r?Zadd_mutually_exclusive_group parse_argsrrrrrrrhr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr$r r r mainxsV                r__main__r&z Error: %sfile)rZloggingr rrjr9r3Z getLoggerr|rYrrrrcrXr{printriexitr r r r s(      9D  *PK!Bugg#__pycache__/__main__.cpython-34.pycnu[ e f@sddlZddlmZdZyedZWn<ek rqZzededejWYddZ[XnXejedS)N)mainz Error: %sfile) sysrrc Exceptioneprintstderrexitr r 2/opt/alt/python34/lib64/python3.4/venv/__main__.pys  *PK!Bugg#__pycache__/__main__.cpython-34.pyonu[ e f@sddlZddlmZdZyedZWn<ek rqZzededejWYddZ[XnXejedS)N)mainz Error: %sfile) sysrrc Exceptioneprintstderrexitr r 2/opt/alt/python34/lib64/python3.4/venv/__main__.pys  *PK!f{t8t8#__pycache__/__init__.cpython-37.pycnu[B  fR @sdZddlZddlZddlZddlZddlZddlZddlZee Z GdddZ dddZ ddd Z e d krd Zye dZWn4ek rZzed eejd WddZ[XYnXeedS)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 dkrLdddZ n d ddZ ddZ ddZ ddZddZddZddZdS)! 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 2/opt/alt/python37/lib64/python3.7/venv/__init__.py__init__+s zEnvBuilder.__init__cCsxtj|}||}|j}d|_|||||jrF|||j s`| || ||rtd|_||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`xZt|D]L}tj||}tj|s6tj|rBt|q tj|r t |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryNs   zEnvBuilder.clear_directorycCsdd}tj|r$|jr$||t}||_tj|d|_ |j dk rT|j n|j }d||_ ||tj }t t dt j}tjtj|\}}||_||_||_t jdkrd} d } tj|d d } n(d } d } tj|ddt jddd } tj|| |_} || || t jdkrftjdkrft jdkrftj|d} tj| sftd| tj|| |_}| |_tj|||_|||S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. cSs@tj|st|n$tj|s0tj|r.create_if_neededNz(%s) _base_executableZwin32ZScriptsZIncludeLibz site-packagesbinZincludelibz python%d.%dlposixdarwinlib64)r rr"rr!typesSimpleNamespacersplitenv_namerenvirongetattrsys executabler python_dirZ python_exeplatformr version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)r rr&rrenvr7dirnameZexenameZbinnameZincpathZlibpathrZ link_pathbinpathr r r rVsJ      zEnvBuilder.ensure_directoriesc Csztj|jd|_}t|dddL}|d|j|jrBd}nd}|d||d 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_pathopenwriter8rr6r:)r rrfZinclr r r rs zEnvBuilder.create_configurationntcCs|j }|syRtj|s\|rPtj|tj|ks:tttj||n t||Wn&tk rt d||d}YnX|rt ||dS)zY Try symlinking a file, and if that fails, fall back to copying. zUnable to symlink %r to %rTN) rr rrrBAssertionErrorr=basename Exceptionloggerwarningrcopyfile)r srcdstrelative_symlinks_okZ force_copyr r r symlink_or_copys  zEnvBuilder.symlink_or_copycCsztj|otj| }|jr|stj|syF|rhtj|tj|ksRtttj ||n t||dSt k rt d||YnXtj tj |\}}tjtjtdd||}tdstj|sB|drd|}|dd}|dkrd }n|d kr&d }tjtj|||}n|}tj|sj|sft d |dSt||dS) zY Try symlinking a file, and if that fails, fall back to copying. NzUnable to symlink %r to %rscriptsrKTZ_dpythonZ venvlauncherZpythonwZ venvwlauncherzUnable to copy %r)r rlexistsr"rrrBrLr=rMrNrOrPsplitextr__file__ sysconfigis_python_buildrendswithrrQ)r rRrSrTZbad_srcrMZextZsrcfnr r r rUs<       cCs|j}|j}|j}|j}tjdkr||j|tj|sFt |dxNdD]F}tj ||}tj |sL||j|ddtj|sLt |dqLWn|j rddt |D}tdrdd|D}n d d d d g}x:|D]2}tj ||}tj|r||tj ||qWtdrxt|jD]v\} } } d | kr0tj| } tj |jd| } tj | szt| tj | d }tj | d } t|| Pq0WdS)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rKi)rXZpython3T)rTcSs,g|]$}tjtj|ddkr|qS)r')z.exez.dll)r rnormcaserZ).0rJr r r sz+EnvBuilder.setup_python..cSs"g|]}tj|dr|qS))rXZ vcruntime)r rr_ startswith)r`rJr r r rasz python.exez python_d.exez pythonw.exez pythonw_d.exezinit.tclr)N)r>r@rUr8r r<r7rrchmodrr"rrr\r]rYwalkrMrr#rrQ)r rrCrZcopierrBsuffixsuffixesrRrootdirsfilesZtcldirrSr r r rsF               zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepipz --upgradez --default-pip)stderrN)r@ subprocessZ check_outputZSTDOUT)r rcmdr r r rs zEnvBuilder._setup_pipcCs2tjtjt}tj|d}|||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. rVN)r rrrBr[rinstall_scripts)r rrr r r r"s 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 r1szEnvBuilder.post_setupcCsJ|d|j}|d|j}|d|j}|d|j}|d|j}|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__)replacerr3rr?r@)r textrr r r replace_variables;s zEnvBuilder.replace_variablesc Cs|j}t|}xt|D]\}}}||kr`x,|ddD]}|dtjfkr>||q>WqxR|D]H} tjdkr| dr| drqhtj || } ||d tj dd} | s|} ntjj |f| } tj | st | tj | | } t| d} | }WdQRX| ds~y$|d}|||}|d}Wn6tk r|}zd}td | |Wdd}~XYnX|dk rht| d } | |WdQRXt| | 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. NcommonrKrX)z.exez.pdbr,rbzutf-8z+unable to copy script %r, may be binary: %swb)r>lenr rdr<rrbr^rrr2sepr"r#rHreaddecoderpencode UnicodeErrorrOrPrIrZcopymode)r rrrCZplenrgrhrir%rJZsrcfilereZdstdirZdstfiledataer r r rmMsF         zEnvBuilder.install_scripts)FFFFFN)F)F)__name__ __module__ __qualname____doc__r rr!rrr r<rUrrrrrprmr r r r rs  5   +<  rFcCs t|||||d}||dS)z,Create a virtual environment in a directory.)rrrrrN)rr)rrrrrrbuilderr r r rsrc Csbd}tjdkrd}nttds"d}|s2tdn,ddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}| }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'| |}|j r"|j r"td(t|j|j |j|j |j|jd)}x|jD]}||qJWdS)*NT)rGrGF 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 descriptionZepilogrhZENV_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.)defaultactiondestrrKz --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)r6r:hasattrr$argparseArgumentParserr| add_argumentr r<Zadd_mutually_exclusive_group parse_argsrrrrrrrrhr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr%r r r mains\             r__main__r'z Error: %s)file)FFFFN)N)rZloggingr rrkr6r\r0Z getLoggerr|rOrrrZrcrNr{printrjexitr r r r s, p  H$PK!(FN'')__pycache__/__init__.cpython-37.opt-2.pycnu[B YI~dR @sddlZddlZddlZddlZddlZddlZddlZeeZ GdddZ d ddZ dddZ ed krd Z ye dZ Wn4ek rZzed eejd WddZ[XYnXee dS)Nc@seZdZdddZddZddZd d Zd d Zej d krHdddZ n dddZ ddZ ddZ ddZ ddZddZddZdS) EnvBuilderFNcCs(||_||_||_||_||_||_dS)N)system_site_packagesclearsymlinksupgradewith_pipprompt)selfrrrrrrr 2/opt/alt/python37/lib64/python3.7/venv/__init__.py__init__+s zEnvBuilder.__init__cCsxtj|}||}|j}d|_|||||jrF|||j s`| || ||rtd|_||dS)NFT) ospathabspathensure_directoriesrcreate_configuration setup_pythonr _setup_pipr setup_scripts post_setup)r env_dircontextZtrue_system_site_packagesr r r create4s       zEnvBuilder.createcCs`xZt|D]L}tj||}tj|s6tj|rBt|q tj|r t |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryNs   zEnvBuilder.clear_directorycCsdd}tj|r$|jr$||t}||_tj|d|_ |j dk rT|j n|j }d||_ ||tj }t t dt j}tjtj|\}}||_||_||_t jdkrd} d} tj|d d } n(d } d } tj|d dt jddd } tj|| |_} || || t jdkrftjdkrft jdkrftj|d} tj| sftd | tj|| |_}| |_tj|||_|||S)NcSs@tj|st|n$tj|s0tj|r.create_if_neededz(%s) _base_executablewin32ZScriptsZIncludeLibz site-packagesbinZincludelibz python%d.%dlposixdarwinlib64)r rr"rr!typesSimpleNamespacersplitenv_namerenvirongetattrsys executabler python_dirZ python_exeplatformr version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)r rr&rrenvr8dirnameZexenameZbinnameZincpathZlibpathrZ link_pathbinpathr r r rVsJ      zEnvBuilder.ensure_directoriesc Csztj|jd|_}t|dddL}|d|j|jrBd}nd}|d||d t j dd WdQRXdS) Nz pyvenv.cfgwzutf-8)encodingz home = %s trueZfalsez"include-system-site-packages = %s zversion = %d.%d.%d ) r rrrZcfg_pathopenwriter9rr7r;)r rrfZinclr r r rs zEnvBuilder.create_configurationntcCs~|j }|sjy6tj|s@|r4ttj||n t||Wn&tk rhtd||d}YnX|rzt ||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_copycCsZtj|otj| }|jr~|s~tj|s~y*|rLttj||n t||dStk r|t d||YnXtj tj|\}}tj tj tdd||}tdstj|s"|drd|}|dd}|dkrd}n|d krd }tj tj |||}n|}tj|sJ|sFt d |dSt||dS) NzUnable to symlink %r to %rscriptsrLTZ_dpythonZ venvlauncherZpythonwZ venvwlauncherzUnable to copy %r)r rlexistsr"rrr>rMrNrOrPsplitextrrC__file__ sysconfigis_python_buildrendswithrrQ)r rRrSrTZbad_srcrMZextZsrcfnr r r rUs:      cCs|j}|j}|j}|j}tjdkr||j|tj|sFt |dxNdD]F}tj ||}tj |sL||j|ddtj|sLt |dqLWn|j rddt |D}tdrdd|D}n d d d d g}x:|D]2}tj ||}tj|r||tj ||qWtdrxt|jD]v\} } } d | kr0tj| } tj |jd| } tj | szt| tj | d }tj | d } t|| Pq0WdS)NrLi)rXZpython3T)rTcSs,g|]$}tjtj|ddkr|qS)r')z.exez.dll)r rnormcaserZ).0rKr r r sz+EnvBuilder.setup_python..cSs"g|]}tj|dr|qS))rXZ vcruntime)r rr_ startswith)r`rKr r r rasz python.exez python_d.exez pythonw.exez pythonw_d.exezinit.tclr*)r?rArUr9r r=r8rrchmodrr"rrr\r]rYwalkrMrr#rrQ)r rrDrZcopierrCsuffixsuffixesrRrootdirsfilesZtcldirrSr r r rsF               zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)Nz-ImZ ensurepipz --upgradez --default-pip)stderr)rA subprocessZ check_outputZSTDOUT)r rcmdr r r rs zEnvBuilder._setup_pipcCs2tjtjt}tj|d}|||dS)NrV)r rrrCr[rinstall_scripts)r rrr r r r"s zEnvBuilder.setup_scriptscCsdS)Nr )r rr r r r1szEnvBuilder.post_setupcCsJ|d|j}|d|j}|d|j}|d|j}|d|j}|S)NZ __VENV_DIR__Z __VENV_NAME__Z__VENV_PROMPT__Z__VENV_BIN_NAME__Z__VENV_PYTHON__)replacerr4rr@rA)r textrr r r replace_variables;s zEnvBuilder.replace_variablesc Cs|j}t|}xt|D]\}}}||kr`x,|ddD]}|dtjfkr>||q>WqxR|D]H} tjdkr| dr| drqhtj || } ||d tj dd} | s|} ntjj |f| } tj | st | tj | | } t| d} | }WdQRX| ds~y$|d}|||}|d}Wn6tk r|}zd}td| |Wdd}~XYnX|dk rht| d } | |WdQRXt| | qhWqWdS) NcommonrLrX)z.exez.pdbr-rbzutf-8z+unable to copy script %r, may be binary: %swb)r?lenr rdr=rrbr^rrr3sepr"r#rIreaddecoderpencode UnicodeErrorrOrPrJrZcopymode)r rrrDZplenrgrhrir%rKZsrcfilereZdstdirZdstfiledataer r r rmMsF         zEnvBuilder.install_scripts)FFFFFN)F)F)__name__ __module__ __qualname__r rr!rrr r=rUrrrrrprmr r r r rs 5   +<  rFcCs t|||||d}||dS)N)rrrrr)rr)rrrrrrbuilderr r r rsrc Csbd}tjdkrd}nttds"d}|s2tdn,ddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}| }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'| |}|j r"|j r"td(t|j|j |j|j |j|jd)}x|jD]}||qJWdS)*NT)rHrHF 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.)prog descriptionepilogrhZENV_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--copies 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)r7r;hasattrr$argparseArgumentParserr| add_argumentr r=add_mutually_exclusive_group parse_argsrrrrrrrrhr) argsZ compatiblerparserZ use_symlinksgroupoptionsrr%r r r mains\             r__main__r'z Error: %s)file)FFFFN)N)Zloggingr rrkr7r\r1Z getLoggerr|rOrrrZrcrNr{printrjexitr r r r s* p  H$PK!TT#__pycache__/__main__.cpython-37.pycnu[B  f @sjddlZddlmZdZyedZWn4ek rZZzedeejdWddZ[XYnXeedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python37/lib64/python3.7/venv/__main__.pys $PK!9<88)__pycache__/__init__.cpython-37.opt-1.pycnu[B  fR @sdZddlZddlZddlZddlZddlZddlZddlZee Z GdddZ dddZ ddd Z e d krd Zye dZWn4ek rZzed eejd WddZ[XYnXeedS)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 dkrLdddZ n d ddZ ddZ ddZ ddZddZddZddZdS)! 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 2/opt/alt/python37/lib64/python3.7/venv/__init__.py__init__+s zEnvBuilder.__init__cCsxtj|}||}|j}d|_|||||jrF|||j s`| || ||rtd|_||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`xZt|D]L}tj||}tj|s6tj|rBt|q tj|r t |q WdS)N) r listdirrjoinislinkisfileremoveisdirshutilZrmtree)r rfnr r r clear_directoryNs   zEnvBuilder.clear_directorycCsdd}tj|r$|jr$||t}||_tj|d|_ |j dk rT|j n|j }d||_ ||tj }t t dt j}tjtj|\}}||_||_||_t jdkrd} d } tj|d d } n(d } d } tj|ddt jddd } tj|| |_} || || t jdkrftjdkrft jdkrftj|d} tj| sftd| tj|| |_}| |_tj|||_|||S)z Create the directories for the environment. Returns a context object which holds paths in the environment, for use by subsequent logic. cSs@tj|st|n$tj|s0tj|r.create_if_neededNz(%s) _base_executableZwin32ZScriptsZIncludeLibz site-packagesbinZincludelibz python%d.%dlposixdarwinlib64)r rr"rr!typesSimpleNamespacersplitenv_namerenvirongetattrsys executabler python_dirZ python_exeplatformr version_infoZinc_pathmaxsizenamesymlinkbin_pathbin_nameenv_exe)r rr&rrenvr7dirnameZexenameZbinnameZincpathZlibpathrZ link_pathbinpathr r r rVsJ      zEnvBuilder.ensure_directoriesc Csztj|jd|_}t|dddL}|d|j|jrBd}nd}|d||d 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_pathopenwriter8rr6r:)r rrfZinclr r r rs zEnvBuilder.create_configurationntcCs~|j }|sjy6tj|s@|r4ttj||n t||Wn&tk rhtd||d}YnX|rzt ||dS)zY 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_copycCsZtj|otj| }|jr~|s~tj|s~y*|rLttj||n t||dStk r|t d||YnXtj tj|\}}tj tj tdd||}tdstj|s"|drd|}|dd}|dkrd }n|d krd }tj tj |||}n|}tj|sJ|sFt d |dSt||dS) zY Try symlinking a file, and if that fails, fall back to copying. NzUnable to symlink %r to %rscriptsrKTZ_dpythonZ venvlauncherZpythonwZ venvwlauncherzUnable to copy %r)r rlexistsr"rrr=rLrMrNrOsplitextrrB__file__ sysconfigis_python_buildrendswithrrP)r rQrRrSZbad_srcrLZextZsrcfnr r r rTs:      cCs|j}|j}|j}|j}tjdkr||j|tj|sFt |dxNdD]F}tj ||}tj |sL||j|ddtj|sLt |dqLWn|j rddt |D}tdrdd|D}n d d d d g}x:|D]2}tj ||}tj|r||tj ||qWtdrxt|jD]v\} } } d | kr0tj| } tj |jd| } tj | szt| tj | d }tj | d } t|| Pq0WdS)z Set up a Python executable in the environment. :param context: The information for the environment creation request being processed. rKi)rWZpython3T)rScSs,g|]$}tjtj|ddkr|qS)r')z.exez.dll)r rnormcaserY).0rJr r r sz+EnvBuilder.setup_python..cSs"g|]}tj|dr|qS))rWZ vcruntime)r rr^ startswith)r_rJr r r r`sz python.exez python_d.exez pythonw.exez pythonw_d.exezinit.tclr)N)r>r@rTr8r r<r7rrchmodrr"rrr[r\rXwalkrLrr#rrP)r rrCrZcopierrBsuffixsuffixesrQrootdirsfilesZtcldirrRr r r rsF               zEnvBuilder.setup_pythoncCs$|jddddg}tj|tjddS)z1Installs or upgrades pip in a virtual environmentz-ImZ ensurepipz --upgradez --default-pip)stderrN)r@ subprocessZ check_outputZSTDOUT)r rcmdr r r rs zEnvBuilder._setup_pipcCs2tjtjt}tj|d}|||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. rUN)r rrrBrZrinstall_scripts)r rrr r r r"s 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 r1szEnvBuilder.post_setupcCsJ|d|j}|d|j}|d|j}|d|j}|d|j}|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__)replacerr3rr?r@)r textrr r r replace_variables;s zEnvBuilder.replace_variablesc Cs|j}t|}xt|D]\}}}||kr`x,|ddD]}|dtjfkr>||q>WqxR|D]H} tjdkr| dr| drqhtj || } ||d tj dd} | s|} ntjj |f| } tj | st | tj | | } t| d} | }WdQRX| ds~y$|d}|||}|d}Wn6tk r|}zd}td | |Wdd}~XYnX|dk rht| d } | |WdQRXt| | 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. NcommonrKrW)z.exez.pdbr,rbzutf-8z+unable to copy script %r, may be binary: %swb)r>lenr rcr<rrar]rrr2sepr"r#rHreaddecoderoencode UnicodeErrorrNrOrIrZcopymode)r rrrCZplenrfrgrhr%rJZsrcfilerdZdstdirZdstfiledataer r r rlMsF         zEnvBuilder.install_scripts)FFFFFN)F)F)__name__ __module__ __qualname____doc__r rr!rrr r<rTrrrrrorlr r r r rs  5   +<  rFcCs t|||||d}||dS)z,Create a virtual environment in a directory.)rrrrrN)rr)rrrrrrbuilderr r r rsrc Csbd}tjdkrd}nttds"d}|s2tdn,ddl}|jtddd }|jd d d d d|jddddddtj dkrd}nd}| }|jd|dddd|jd| dddd|jdddddd|jddddd d|jd!d"ddd#d$|jd%d&d'| |}|j r"|j r"td(t|j|j |j|j |j|jd)}x|jD]}||qJWdS)*NT)rGrGF 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 descriptionZepilogrgZENV_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.)defaultactiondestrrKz --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)r6r:hasattrr$argparseArgumentParserr{ add_argumentr r<Zadd_mutually_exclusive_group parse_argsrrrrrrrrgr) argsZ compatiblerparserZ use_symlinksgroupZoptionsrr%r r r mains\             r__main__r'z Error: %s)file)FFFFN)N)r~Zloggingr rrjr6r[r0Z getLoggerr{rNrrrZrcrMrzprintriexitr r r r s, p  H$PK!TT)__pycache__/__main__.cpython-37.opt-1.pycnu[B  f @sjddlZddlmZdZyedZWn4ek rZZzedeejdWddZ[XYnXeedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python37/lib64/python3.7/venv/__main__.pys $PK!ȽTT)__pycache__/__main__.cpython-37.opt-2.pycnu[B YI~d @sjddlZddlmZdZyedZWn4ek rZZzedeejdWddZ[XYnXeedS)N)mainz Error: %s)file) sysrZrc Exceptioneprintstderrexitr r 2/opt/alt/python37/lib64/python3.7/venv/__main__.pys $PK!\bscripts/posix/activate.cshnu[PK!A8 Fscripts/posix/activate.fishnu[PK!F8kI#I#scripts/common/Activate.ps1nu[PK!d2scripts/common/activatenu[PK!*Zll*;__pycache__/__init__.cpython-311.opt-2.pycnu[PK!_N##$__pycache__/__init__.cpython-311.pycnu[PK!c鰬77$)__pycache__/__main__.cpython-311.pycnu[PK!c鰬77*+__pycache__/__main__.cpython-311.opt-2.pycnu[PK!?R~~**.__pycache__/__init__.cpython-311.opt-1.pycnu[PK!c鰬77*@__pycache__/__main__.cpython-311.opt-1.pycnu[PK!, ѯ__main__.pynu[PK! HH __init__.pynu[PK!4S5S5#__pycache__/__init__.cpython-36.pycnu[PK!oE~$$)Y/__pycache__/__init__.cpython-36.opt-2.pycnu[PK!qPP)T__pycache__/__main__.cpython-36.opt-1.pycnu[PK!CxKK)VV__pycache__/__main__.cpython-36.opt-2.pycnu[PK!h 5 5)W__pycache__/__init__.cpython-36.opt-1.pycnu[PK!qPP#s__pycache__/__main__.cpython-36.pycnu[PK!ZZ)__pycache__/__main__.cpython-39.opt-2.pycnu[PK!΄'..)ɐ__pycache__/__init__.cpython-39.opt-2.pycnu[PK!ZZ#__pycache__/__main__.cpython-39.pycnu[PK!WAWA#__pycache__/__init__.cpython-39.pycnu[PK!6AA)Q__pycache__/__init__.cpython-39.opt-1.pycnu[PK!ZZ)D__pycache__/__main__.cpython-39.opt-1.pycnu[PK!FnnoFscripts/posix/activatenu[PK!$ ??##O__pycache__/__init__.cpython-34.pyonu[PK!%*@*@#___pycache__/__init__.cpython-34.pycnu[PK!Bugg#__pycache__/__main__.cpython-34.pycnu[PK!Bugg#__pycache__/__main__.cpython-34.pyonu[PK!f{t8t8#P__pycache__/__init__.cpython-37.pycnu[PK!(FN'') __pycache__/__init__.cpython-37.opt-2.pycnu[PK!TT#4__pycache__/__main__.cpython-37.pycnu[PK!9<88)5__pycache__/__init__.cpython-37.opt-1.pycnu[PK!TT)!n__pycache__/__main__.cpython-37.opt-1.pycnu[PK!ȽTT)o__pycache__/__main__.cpython-37.opt-2.pycnu[PK## {q