aboutsummaryrefslogtreecommitdiff
path: root/scripts/setup_windows.sh
blob: 6883f274c2b8c0a15df0d7376df0f399196160ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
set -x

choco install python
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
echo $PATH
export PATH=/C/Python37:$PATH
which python
python get-pip.py
curl https://download.lfd.uci.edu/pythonlibs/u2hcgva4/cx_Freeze-5.1.1-cp37-cp37m-win_amd64.whl -o cx_Freeze-5.1.1-cp37-cp37m-win_amd64.whl
python -m pip install *.whl

set +x