Port python deps setup to windows
This commit is contained in:
parent
3630a78d1a
commit
74afd3c373
5 changed files with 252 additions and 1 deletions
13
python-setup/install_tools.ps1
Normal file
13
python-setup/install_tools.ps1
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#! /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
|
||||
py -3 -m pip install --user virtualenv
|
||||
|
||||
# poetry 1.0.10 has error (https://github.com/python-poetry/poetry/issues/2711)
|
||||
py -3 -m pip install --user poetry!=1.0.10
|
||||
py -3 -m pip install --user pipenv
|
||||
Loading…
Add table
Add a link
Reference in a new issue