Установить Python в Windows
Проверка установки Python в Windows
В PowerShell выполните
python
Python 3.10.10 (tags/v3.10.10:aad5f6a, Feb 7 2023, 17:20:36) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>
Из этого сообщения можно понять что текущая версия Python это 3.10.10
Посмотреть есть ли ещё установленные версии Python можно проверив директорию куда он устанавливается
ls C:\Users\${Env:Username}\AppData\Local\Programs\Python\
Directory: C:\Users\Andrei\AppData\Local\Programs\Python Mode LastWriteTime Length Name ---- ------------- ------ ---- d---- 4/30/2024 1:19 PM Python310 d---- 2/14/2024 3:34 PM Python312 d---- 4/17/2024 4:24 PM Python312-32 d---- 2/19/2024 11:52 AM Python38
Видно что у меня установлены 64-x битные Python 3.8, 3.10, 3.12 и 32-х битная версия Python 3.12
Скачивание
Скачать последнюю стабильную версию можно на официальном
сайте Python
Выберите версию и в таблице найдите нужный вам файл.
Рекомендуемая версия это Windows installer (64-bit)
Скачанный файл будет называть примерно так
python-3.XX.XX-amd64.exe
Например, python-3.10.10-amd64.exe
amd64
Python 3.14.2
Python 3.13.11
Python 3.12.3
Python 3.11.3
Python 3.10.11
Python 3.9.13
Python 3.8.10
32
Установка
Запустить установку можно двойным кликом на .exe файл.
Рекомендую сразу же добавить python.exe в системную переменную PATH
www.devhops.ru
Если вы уже пропустили этот шаг добавить Python в PATH можно командой в cmd
setx PATH "%PATH%;C:\Users\%USERNAME%\AppData\Local\Programs\Python\Python312\Scripts"
Или PowerShell
$Env:Path += ';C:\Users\${Env:Username}\AppData\Local\Programs\Python\Python312'
Либо явно укажите пользователя. В примере ниже указан пользователь Andrei
$Env:Path += ';C:\Users\Andrei\AppData\Local\Programs\Python\Python312'
Дождитесь окончания установки
www.devhops.ru
В случае успеха появится похожее сообщение
www.devhops.ru
Для изучения предлагаются следующие материалы:
Онлайн туториал
Документация
Применение Python в Windows
Что нового в релизе
Расположение файлов
Если Python установлен для всех пользователей то .exe файл может находится здесь:
C:\Windows\py.exe
Если Python был установлен для определённого пользователя, то python.exe будет находися в AppData
C:\Users\Andrei\AppData\Local\Programs\Python\Python310
Вместо Andrei будет имя того пользователя, для которого установлен Python
Проверить куда установлен
# which_python.py import os import sys print(os.path.dirname(sys.executable))
python which_python.py
'C:\Users\ao\AppData\Local\Programs\Python\Python312\python.exe'
Ещё быстрее будет сделать это в интерактивном режиме.
Ещё одно место, где можно найти python.exe это
C:\Users\Username\AppData\Local\Microsoft\WindowsApps
Использование определённых версий
Подробно про создание алиасов в PowerShell вы можете прочитать в статье Alias в PowerShell
notepad $profile
Set-Alias -Name py38 -Value "C:\Users\U\AppData\Local\Programs\Python\Python38\python.exe" Set-Alias -Name py310 -Value "C:\Users\U\AppData\Local\Programs\Python\Python310\python.exe"
Эти алиасы будут доступны только в PowerShell
Теперь выполнив одну из этих команд вы будете запускать определённую версию Python
py310
Python 3.10.11 (tags/v3.10.11:7d4cc5a, Apr 5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.
Это может пригодится для создания виртуальных окружений
py310 -m venv venv
.\venv\Scripts\activate
Внутри окружения нужно ипользовать не py310 а python
Скачивание PowerShell скриптом
Пример скачивания python.exe PowerShell скриптом
# DownloadPython.ps1 $ARCH = 64 # $ARCH = 32 $PY_VERSION = "3.12.5" $TMP_DISK = "C:\" $TMP_DIR = "tmp_python" $TMP_PATH = Join-Path -Path $TMP_DISK -ChildPath $TMP_DIR $URL = "https://www.python.org/ftp/python/${PY_VERSION}" Write-Host $URL -f Cyan Write-Host "Using ${ARCH}-bit Python" -f Cyan If ($ARCH -eq 64) { Write-Host "64-bit case" -f Cyan $PYTHON_EXE_URL = ${URL} + "/python-3.12.5-amd64.exe" } Else { Write-Host "32-bit case" -f Cyan $PYTHON_EXE_URL = ${URL} + "/python-3.12.5.exe" } $CURRENT_USER = $Env:Username $TMP_PYTHON_EXE = Join-Path -Path $TMP_PATH -ChildPath "python.exe" Write-Host $TMP_PYTHON_EXE -f Gray If (Test-Path -path ${TMP_PATH}) { Write-Host "${TMP_PATH} dir exists" -f Green } Else { Write-Host "${TMP_PATH} dir does not exist - creating" -f Yellow New-Item -Path $TMP_DISK -Name $TMP_DIR -ItemType "directory" } If (Test-Path -path $TMP_PYTHON_EXE -PathType Leaf) { Write-Host "python.exe file exists" -f Green } Else { Write-Host "python.exe file does not exist - starting download" -f Yellow Write-Host "Downloading ${PYTHON_EXE_URL}" -f Cyan Invoke-WebRequest $PYTHON_EXE_URL -OutFile $TMP_PYTHON_EXE }
Установка PowerShell скриптом
Рассмотрим пример создания с нуля готового виртуального окружения Python.
Управляющий скрипт будет называться
InitialSetup.ps1
.
С его помощью мы запустим скачивание и установку Python - скрипт
DownloadAndInstallPythonAndUpdatePath.ps1
.
Затем добавим нужные пути в систему с помощью
AddPythonPath.ps1
.
Когда пути обновлены запустится скрипт который дожидается установки Python -
WatchForPythonAndCreateEnv.ps1
и затем содает вирутальное окружение с помощью
CreateEnv.ps1
предварительно можно почистить WindowsApps с помощью
DeletePythonFromWindowsApps.ps1
Структура проекта выглядит следующим образом
├───module └───setup ├───CreateEnv.ps1 ├───DeletePythonFromWindowsApps.ps1 ├───DownloadAndInstallPythonAndUpdatePath.ps1 ├───InitialSetup.ps1 ├───IsPythonInstalled.ps1 └───WatchForPythonAndCreateEnv.ps1
Логически скрипты можно расположить так
├───module └───setup └───InitialSetup.ps1 ├───DeletePythonFromWindowsApps.ps1 ├───DownloadAndInstallPythonAndUpdatePath.ps1 └───WatchForPythonAndCreateEnv.ps1 ├───IsPythonInstalled.ps1 └───CreateEnv.ps1
Пример скачивания и установки для всех пользователей python.exe PowerShell скриптом.
# DownloadAndInstallPythonAndUpdatePath.ps1 # Author: andreyolegovich.ru for www.devhops.ru $ARCH = 64 # $ARCH = 32 $PY_VERSION = "3.12.5" $TMP_DISK = "C:\" $TMP_DIR = "tmp_python" $TMP_PATH = Join-Path -Path $TMP_DISK -ChildPath $TMP_DIR $URL = "https://www.python.org/ftp/python/${PY_VERSION}" Write-Host "${ARCH}-bit case" -f Cyan Write-Host $URL -f Cyan Write-Host "Using ${ARCH}-bit Python" -f Cyan $CURRENT_USER = $Env:Username $USER_DIR = Join-Path "C:\Users\" -ChildPath $CURRENT_USER $APP_DATA_PY = Join-Path -Path $USER_DIR -ChildPath "\AppData\Local\Programs\Python" If ($ARCH -eq 64) { $PYTHON_EXE_URL = ${URL} + "/python-3.12.5-amd64.exe" $LOCAL_PY_PATH = Join-Path -Path $APP_DATA_PY -ChildPath "\Python312\" $PROGRAM_FILES_PY = 'C:\Program Files\Python312\;' } Else { $PYTHON_EXE_URL = ${URL} + "/python-3.12.5.exe" $LOCAL_PY_PATH = Join-Path -Path $APP_DATA_PY -ChildPath "\Python312-32\" $PROGRAM_FILES_PY = 'C:\Program Files (x86)\Python312-32\;' } $Env:Path = $LOCAL_PY_PATH + ";" + $Env:Path $LOCAL_PY_SCRIPTS_PATH = Join-Path -Path $LOCAL_PY_PATH -ChildPath "Scripts" $Env:Path = $LOCAL_PY_SCRIPTS_PATH + ";" + $Env:Path $Env:PYTHONPATH += $LOCAL_PY_SCRIPTS_PATH $Env:Path = $PROGRAM_FILES_PY + $Env:Path $Env:PYTHONPATH += $PROGRAM_FILES_PY $TMP_PYTHON_EXE = Join-Path -Path $TMP_PATH -ChildPath "python.exe" Write-Host $TMP_PYTHON_EXE -f Gray If (Test-Path -path ${TMP_PATH}) { Write-Host "${TMP_PATH} dir exists" -f Green } Else { Write-Host "${TMP_PATH} dir does not exist - creating" -f Yellow New-Item -Path $TMP_DISK -Name $TMP_DIR -ItemType "directory" } If (Test-Path -path $TMP_PYTHON_EXE -PathType Leaf) { Write-Host "python.exe file exists" -f Green } Else { Write-Host "python.exe file does not exist - starting download" -f Yellow Write-Host "Downloading $PYTHON_EXE_URL" -f Cyan Invoke-WebRequest $PYTHON_EXE_URL -OutFile $TMP_PYTHON_EXE } # Update Path $PARENT_PATH = Split-Path $pwd $Env:Path += ';' $Env:Path += $PARENT_PATH $Env:Path += '\module' $Env:Path += ';' $Env:Path += $PARENT_PATH $Env:PYTHONPATH += ';' $Env:PYTHONPATH += $PARENT_PATH $Env:PYTHONPATH += '\module' $Env:PYTHONPATH += ';' $Env:PYTHONPATH += $PARENT_PATH $Env:PYTHONPATH += ';' $Env:Path = 'C:\Windows\;' + $Env:Path $Env:PYTHONPATH += 'C:\Windows\' # Install Python & $TMP_PYTHON_EXE /passive InstallAllUsers=1 PrependPath=1 Include_test=0
Скрипт, который проверяет завершилась ли установка Python и когда она завершается создает виртуальное окружение а затем устанавливает зависимости.
Get-Command python -ErrorAction SilentlyContinue - не очень надёжный способ проверки. Если в C:\Users\Name\AppData\Local\Microsoft\WindowsApps есть файлы python.exe или python3.exe он может вернуть положительный результат.
# WatchForPythonAndCreateEnv.ps1 . .\IsPythonInstalled.ps1 . .\CreateEnv.ps1 $py_installed = 0 $counter = 1 while ($counter -gt 0) { # Write-Output "while loop is running" Write-Host $counter -f Green $counter = $counter + 1 $py_installed = IsPythonInstalled Write-Host $py_installed -f Red Start-Sleep -Seconds 3.0 if ($py_installed -eq 1) { Write-Host "Python is installed waiting for 10 seconds" -f Green Start-Sleep -Seconds 10.0 CreateEnv $counter = 0 } }
# IsPythonInstalled.ps1 function IsPythonInstalled { # Write-Output "IsPythonInstalled is running" $installed = Get-Command python -ErrorAction SilentlyContinue Write-Host $installed -f Yellow if ($installed) { $version = python --version 2>&1 Write-Host "Python version: $version" -f Green $result = 1 } else { Write-Host "Python is not yet installed on this device." -f Yellow $result = 0 } return $result }
# CreateEnv.ps1 function CreateEnv { Write-Host "Creating virtual environment" -f Blue Write-Host "cd .." -f Blue cd .. Write-Host "python -m venv venv32" -f Blue python -m venv venv32 Write-Host ".\venv32\Scripts\activate" -f Blue .\venv32\Scripts\activate Write-Host "python -m pip install -r requirements.txt" -f Blue python -m pip install -r requirements.txt Write-Host "cd .\setup" -f Blue cd .\setup } # If used separately uncomment line below # CreateEnv
Скрипт, который удаляет Python .exe файлы из WinodwsApps
# DeletePythonFromWindowsApps.ps1 $CURRENT_USER = $Env:Username $PYPATH = 'C:\Users\' + $CURRENT_USER + '\AppData\Local\Microsoft\WindowsApps\python.exe' $PY3PATH = 'C:\Users\' + $CURRENT_USER + '\AppData\Local\Microsoft\WindowsApps\python3.exe' If (Test-Path -path ${PYPATH}) { Remove-Item $PYPATH } If (Test-Path -path ${PY3PATH}) { Remove-Item $PY3PATH }
Скрипт, который удаляет временную директорию для Python
# CleanTempPython.ps1 $TMP_PATH = "C:\tmp_python" $TMP_PYTHON_EXE = Join-Path -Path $TMP_PATH -ChildPath "python.exe" Write-Host $TMP_PYTHON_EXE -f Gray If (Test-Path -path $TMP_PYTHON_EXE -PathType Leaf) { Remove-Item $TMP_PYTHON_EXE } Else { Write-Host "python.exe file does not exist" -f Yellow }
Скрипт, который запускает все предыдущие скрипты: скачивание и установку Python, обновление системных переменных и создание виртуального окружения после установки
# InitialSetup.ps1 # Exec the following command in Powershell first # Set-ExecutionPolicy -ExecutionPolicy Unrestricted Write-Host "Downloading and Installing Python and Updating Env" -f Green .\DownloadAndInstallPythonAndUpdatePath.ps1 Write-Host "Delete Python .exe files from WindowsApps" .\DeletePythonFromWindowsApps.ps1 Write-Host "Waiting for installation to finish and creating Python venv" -f Green .\WatchForPythonAndCreateEnv.ps1 Write-Host "Cleaning temporary dir" -f Green .\CleanTempPython.ps1
Установка для всех пользователей
Чтобы проверить как установлен Python: для всех пользователей или для одного можно использовать следующий оригинальный скрипт.
# check_if_py_is_for_all_users.ps1 # Check if Python is installed for all users on Windows 11 Write-Host "Checking Python installation..." -ForegroundColor Cyan # 1. Check registry locations $hklm = "HKLM:\Software\Python" $hkcu = "HKCU:\Software\Python" $installedHKLM = Test-Path $hklm $installedHKCU = Test-Path $hkcu # 2. Check installation paths $paths = @( "C:\Program Files\Python", "C:\Program Files\WindowsApps", "$env:LOCALAPPDATA\Programs\Python" ) $foundPaths = foreach ($p in $paths) { if (Test-Path $p) { $p } } # 3. Determine installation type if ($installedHKLM -or ($foundPaths -match "Program Files")) { Write-Host "Python appears to be installed for ALL USERS." -ForegroundColor Green } elseif ($installedHKCU -or ($foundPaths -match "AppData")) { Write-Host "Python is installed for the CURRENT USER only." -ForegroundColor Yellow } else { Write-Host "Python does not appear to be installed." -ForegroundColor Red } # 4. Show detected paths if ($foundPaths) { Write-Host "`nDetected installation paths:" -ForegroundColor Cyan $foundPaths | ForEach-Object { Write-Host " - $_" } }
powershell.exe -ExecutionPolicy Bypass -File .\check_if_py_is_for_all_users.ps1
Checking Python installation... Python appears to be installed for ALL USERS. Detected installation paths: - C:\Program Files\WindowsApps - C:\Users\Andrei\AppData\Local\Programs\Python
choco
choco install python -y
choco search python -e
winget
winget install Python 3.11
winget search python -e
Name Id Version Match Source -------------------------------------------------------------------------------------------------- Python 3.13 9PNRBTZXMB4Z Unknown msstore Python 3.12 9NCVDN91XZQP Unknown msstore Python Install Manager 9NQ7512CXL7T Unknown msstore 计算机二级 Python 考试题库 9PBKTNDS9VSH Unknown msstore InstantPython 9WZDNCRDC1W5 Unknown msstore Anaconda3 Anaconda.Anaconda3 2025.12-2 Command: python winget Miniconda3 Anaconda.Miniconda3 py313_26.1.1-1 Command: python winget Mambaforge CondaForge.Mambaforge 24.11.0-1 Command: python winget Mambaforge-pypy3 CondaForge.Mambaforge.PyPy3 24.11.0-1 Command: python winget Miniforge3 CondaForge.Miniforge3 26.1.0-0 Command: python winget Miniforge-pypy3 CondaForge.Miniforge3.PyPy3 24.11.0-1 Command: python winget Python Launcher Python.Launcher 3.13.5 Command: python winget Python 2 Python.Python.2 2.7.18150 Command: python winget Python 3.0 Python.Python.3.0 3.0.1 Command: python winget Python 3.1 Python.Python.3.1 3.1.4 Command: python winget Python 3.10 Python.Python.3.10 3.10.11 Command: python winget Python 3.11 Python.Python.3.11 3.11.9 Command: python winget Python 3.12 Python.Python.3.12 3.12.10 Command: python winget Python 3.13 Python.Python.3.13 3.13.12 Command: python winget Python 3.14 Python.Python.3.14 3.14.3 Command: python winget Python 3.2 Python.Python.3.2 3.2.5 Command: python winget Python 3.3 Python.Python.3.3 3.3.5 Command: python winget Python 3.4 Python.Python.3.4 3.4.4 Command: python winget Python 3.5 Python.Python.3.5 3.5.4 Command: python winget Python 3.6 Python.Python.3.6 3.6.8 Command: python winget Python 3.7 Python.Python.3.7 3.7.9 Command: python winget Python 3.8 Python.Python.3.8 3.8.10 Command: python winget Python 3.9 Python.Python.3.9 3.9.13 Command: python winget Python Install Manager Python.PythonInstallManager 26.0.240.0 Command: python winget BPMN-RPA Studio 1IC.BPMN-RPAStudio 28.0.0 Tag: python winget MessyFileOrganizer 4ngel2769.MessyOrganizer 1.0.0 Tag: python winget WingetCreate GUI 7gxycn08.WinGetCreateGui 1.1 Tag: python winget Thonny AivarAnnamaa.Thonny 4.1.7 Tag: python winget NPTE Anakin-bb8.NPTE 1.0.6.0 Tag: python winget TikTok-LIVE-Automation AppSolves.TikTok-LIVE-Automation 2.0.8 Tag: python winget News CLI Atticus64.news 1.3.0 Tag: python winget Braillify Braillify.Braillify 1.0.11 Tag: python winget CP Editor CPEditor.CPEditor 6.11.2 Tag: python winget PyCalc Chill-Astro.PyCalc 1.5 Tag: python winget MsixCertImportTool Chill-Astro.TMM 1.1 Tag: python winget pympress Cimbali.pympress 1.8.6 Tag: python winget Sourcetrail 64-bit CoatiSoftware.Sourcetrail 2021.4.19 Tag: python winget 海龟编辑器 Codemao.TurtleEditor.1 1.8.7 Tag: python winget 海龟编辑器 2.0 Codemao.TurtleEditor.2 2.7.6 Tag: python winget dda Datadog.dda 0.32.0 Tag: python winget Certbot EFF.Certbot 2.9.0 Tag: python winget EditPlus ES-Computing.EditPlus 6.1.780.0 Tag: python winget SUMO EclipseFoundation.SUMO 1.26.0 Tag: python winget EyesAndEars FediMust.EyesAndEars 2.2.0 Tag: python winget Got Your Back GAM-Team.GotYourBack 1.90 Tag: python winget gam GAM-Team.gam 7.36.01 Tag: python winget Simple Annual Accounting GaetanSencie.SimpleAnnualAccoun… 2.1.0.0 Tag: python winget flatbuffers Google.flatbuffers v25.2.10 Tag: python winget Melodfy HemantKArya.Melodfy 1.0.0.24 Tag: python winget Conan Package Manager JFrog.Conan 2.26.2 Tag: python winget DataSpell JetBrains.DataSpell 2025.3.2 Tag: python winget DataSpell (EAP) JetBrains.DataSpell.EAP 261.21849.35 Tag: python winget PyCharm JetBrains.PyCharm 2025.3.3 Tag: python winget PyCharm Community Edition JetBrains.PyCharm.Community 2025.2.6 Tag: python winget PyCharm Community Edition… JetBrains.PyCharm.Community.EAP 252.23892.194 Tag: python winget PyCharm Professional Edit… JetBrains.PyCharm.Professional 2024.3.5 Tag: python winget PyCharm Professional Edit… JetBrains.PyCharm.Professional.… 261.22158.126 Tag: python winget Universal Radio Hacker JohannesPohl.UniversalRadioHack… 2.9.8 Tag: python winget Laragon LeNgocKhoa.Laragon 8.6.1 Tag: python winget Lianja App Builder Lianja.LianjaAppBuilder 12.0.3 Tag: python winget Furious LorenEteval.Furious 0.6.1 Tag: python winget MAMP & MAMP PRO MAMP.MAMP 5.0.5 Tag: python winget Micromamba Mamba.Micromamba 2.5.0-2 Tag: python winget PyPad MarkWesker.PyPad 1.0.0.0 Tag: python winget QSpectrumAnalyzer MichalKrenek.QSpectrumAnalyzer 2.2.0 Tag: python winget IronPython 2 Microsoft.IronPython.2 2.7.12.1000 Tag: python winget IronPython 3 Microsoft.IronPython.3 3.4.2.1000 Tag: python winget Mu Editor Mu.Mu 1.2.0 Tag: python winget Nicotine+ Nicotine+.Nicotine+ 3.3.10 Tag: python winget Blink Eye NomanDhoni.BlinkEye 2.7.4 Tag: python winget Open Shop Channel Downloa… OpenShopChannel.Downloader 1.4.0 Tag: python winget Austin P403n1x87.austin 3.7.0 Tag: python winget Quarto Posit.Quarto 1.8.27 Tag: python winget Pulumi Pulumi.Pulumi 3.226.0 Tag: python winget Hatch PyPA.Hatch 1.16.5 Tag: python winget QTodoTxt QTodoTxt.QTodoTxt 1.7.0 Tag: python winget Rye Rye.Rye 0.44.0 Tag: python winget SABnzbd SABnzbdTeam.SABnzbd 4.5.5 Tag: python winget PictoBlox STEMpedia.PictoBlox 9.0.1 Tag: python winget PyMOL Schrodinger.PyMOL 3.1.7.2 Tag: python winget Spyder Spyder.Spyder 6.1.3 Tag: python winget pyzo ThePyzoteam.pyzo 4.21.0 Tag: python winget Orange UniversityOfLjubljana.Orange 3.40.0 Tag: python winget Unknown-Horizons Unknown-HorizonsTeam.Unknown-Ho… 2019.1 Tag: python winget Blender Launcher VictorIX.BlenderLauncher 2.6.1 Tag: python winget VisIt VisIt.VisIt 3.4.2 Tag: python winget Wing 101 Wingware.Wing.101 11.1.0.0 Tag: python winget Wing Personal Wingware.Wing.Personal 11.1.0.0 Tag: python winget Wing Pro Wingware.Wing.Pro 11.1.0.0 Tag: python winget Ghost Downloader XiaoYouChR.GhostDownloader 3.5.12 Tag: python winget Vividly Z7LL.Vividly 1.0 Tag: python winget ZeroNet ZeroNet.ZeroNet 0.7.1 Tag: python winget doccmd adamtheturtle.doccmd 2026.03.02 Tag: python winget Dbmate amacneil.dbmate 2.31.0 Tag: python winget Corkscrew Updater androidWG.Corkscrew 1.1.0 Tag: python winget Ruff astral-sh.ruff 0.15.6 Tag: python winget ty astral-sh.ty 0.0.23 Tag: python winget uv astral-sh.uv 0.10.10 Tag: python winget chaiNNer chaiNNer-org.chaiNNer 0.25.1 Tag: python winget QR Code Generator edpaz.QRCodeGenerator 1.0.0 Tag: python winget Gaphor gaphor.gaphor 3.2.0 Tag: python winget git-cola git-cola.git-cola 4.17.1 Tag: python winget PyAudio intxcc.pyaudio 0.2.11 Tag: python winget RedNotebook jendrikseipp.RedNotebook 2.42 Tag: python winget Cartridges kramo.Cartridges 2.12.1 Tag: python winget vx loonghao.vx 0.8.4 Tag: python winget magic-wormhole magic-wormhole.magic-wormhole 0.22.0.1 Tag: python winget Qtcord mak448a.Qtcord 0.0.21 Tag: python winget Another Qt installer miurahr.aqtinstall 3.3.0 Tag: python winget nteract nteract.nteract 0.28.0 Tag: python winget Black psf.black 25.1.0 Tag: python winget qutebrowser qutebrowser.qutebrowser 3.6.3 Tag: python winget Stackless Python stackless.stackless 3.7.9150.0 Tag: python winget CryptivisX tromoSM.CryptivisX 1.1 Tag: python winget HostTalk tromoSM.HostTalk 0.9 Tag: python winget winpython winpython.winpython 7.0.20231126f… Tag: python winget winpython-dot winpython.winpython-dot 6.4.20230625f… Tag: python winget winpython-dot-pypy winpython.winpython-dot-pypy 3.8.12.3 Tag: python winget winpython-pypy winpython.winpython-pypy 7.0.20231126f… Tag: python winget MoonViewer zsyg.MoonViewer 1.1 Tag: python winget
winget install Python 3.11
Автор статьи: Андрей Олегович
| Python | |
| Сложности при работе с Python | |
| Виртуальное окружение | |
| pyenv | |
| Anaconda |