forked from Advanced_Python/advanced-python-homework-2023
vviora
3eb550c3db
new file: .vs/Python_HW/FileContentIndex/bf645799-c9e5-45df-816d-b791fcb04273.vsidx new file: .vs/Python_HW/v17/.wsuo new file: .vs/VSWorkspaceState.json new file: .vs/slnx.sqlite new file: LICENSE new file: Makefile modified: README.md new file: hwvenv/Scripts/Activate.ps1 new file: hwvenv/Scripts/activate new file: hwvenv/Scripts/activate.bat new file: hwvenv/Scripts/deactivate.bat new file: hwvenv/Scripts/pip.exe new file: hwvenv/Scripts/pip3.11.exe new file: hwvenv/Scripts/pip3.exe new file: hwvenv/Scripts/python.exe new file: hwvenv/Scripts/pythonw.exe new file: hwvenv/pyvenv.cfg new file: hwvenv/requirements.txt new file: make.bat new file: setup.py new file: source/conf.py new file: source/index.rst
35 lines
977 B
Batchfile
35 lines
977 B
Batchfile
@echo off
|
|
|
|
rem This file is UTF-8 encoded, so we need to update the current code page while executing it
|
|
for /f "tokens=2 delims=:." %%a in ('"%SystemRoot%\System32\chcp.com"') do (
|
|
set _OLD_CODEPAGE=%%a
|
|
)
|
|
if defined _OLD_CODEPAGE (
|
|
"%SystemRoot%\System32\chcp.com" 65001 > nul
|
|
)
|
|
|
|
set VIRTUAL_ENV=C:\Users\user\Desktop\Python_HW\hwvenv
|
|
|
|
if not defined PROMPT set PROMPT=$P$G
|
|
|
|
if defined _OLD_VIRTUAL_PROMPT set PROMPT=%_OLD_VIRTUAL_PROMPT%
|
|
if defined _OLD_VIRTUAL_PYTHONHOME set PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%
|
|
|
|
set _OLD_VIRTUAL_PROMPT=%PROMPT%
|
|
set PROMPT=(hwvenv) %PROMPT%
|
|
|
|
if defined PYTHONHOME set _OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%
|
|
set PYTHONHOME=
|
|
|
|
if defined _OLD_VIRTUAL_PATH set PATH=%_OLD_VIRTUAL_PATH%
|
|
if not defined _OLD_VIRTUAL_PATH set _OLD_VIRTUAL_PATH=%PATH%
|
|
|
|
set PATH=%VIRTUAL_ENV%\Scripts;%PATH%
|
|
set VIRTUAL_ENV_PROMPT=(hwvenv)
|
|
|
|
:END
|
|
if defined _OLD_CODEPAGE (
|
|
"%SystemRoot%\System32\chcp.com" %_OLD_CODEPAGE% > nul
|
|
set _OLD_CODEPAGE=
|
|
)
|