Skip to content

Instantly share code, notes, and snippets.

@SirJson
Created February 23, 2020 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SirJson/d49eb5749465fb8ce965651071399f25 to your computer and use it in GitHub Desktop.
Save SirJson/d49eb5749465fb8ce965651071399f25 to your computer and use it in GitHub Desktop.
This batch script will create symlinks so you can call both python 2 and 3 like on linux
@echo off
rem This batch script will create symlinks so you can call both python 2 and 3 like on linux
mklink C:\Python27\python2.exe C:\Python27\python.exe
mklink C:\Python38\python3.exe C:\Python38\python.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment