aboutsummaryrefslogtreecommitdiff
path: root/scripts/setup_windows.sh
blob: 75c700e05cea21cc50e0881cdf589834d4248c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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.whl
python -m pip install cx_Freeze.whl