Permalink
Cannot retrieve contributors at this time
12 lines (9 sloc)
477 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/python-setup/install_tools.ps1
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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 | |
py -2 -m pip install --user 'virtualenv!=20.12.0' | |
py -3 -m pip install --user virtualenv | |
py -3 -m pip install --user "poetry>=1.1" | |
py -3 -m pip install --user pipenv |