Files
codeql-action/python-setup/install_tools.ps1
T

14 lines
563 B
PowerShell
Raw Normal View History

2020-10-06 14:14:12 +02:00
#! /usr/bin/pwsh
py -2 -m pip install --user --upgrade pip setuptools wheel
py -3 -m pip install --user --upgrade pip setuptools wheel
# virtualenv is a bit nicer for setting up virtual environment, since it will provide up-to-date versions of
# pip/setuptools/wheel which basic `python3 -m venv venv` won't
2022-01-01 18:15:28 -08:00
py -2 -m pip install --user 'virtualenv<20.11'
py -3 -m pip install --user 'virtualenv<20.11'
2020-10-06 14:14:12 +02:00
# poetry 1.0.10 has error (https://github.com/python-poetry/poetry/issues/2711)
py -3 -m pip install --user poetry!=1.0.10
2022-01-01 18:15:28 -08:00
py -3 -m pip install --user pipenv