dotfiles/win/setup/python.md

855 B

download and install latest version

setup pip mirror

create $HOME\pip\pip.ini

[global]
#index-url = https://pypi.tuna.tsinghua.edu.cn/simple
index-url = https://mirrors.aliyun.com/pypi/simple

alternative versions and virtualenv

  • download alternative versions you need from python for windows (note: not all releases provide binary installer)
  • DO NOT check Add To Path option during installation
  • run pip install virutalenv
  • run virtualenv -p $env:LOCALAPPDATA\Programs\Python\PythonXX\python.exe env to create virtual env for your project
  • run env\Scripts\activate.ps1 on PowerShell to activate the virtualenv
  • run deactivate when done