Skip to content

Instantly share code, notes, and snippets.

@patricksnape
Last active August 29, 2015 14:00
Show Gist options
  • Save patricksnape/9ebab059c3e578de0736 to your computer and use it in GitHub Desktop.
Save patricksnape/9ebab059c3e578de0736 to your computer and use it in GitHub Desktop.
Conda switcher
@echo off
if "%CONDA_PATH%" == "" (
set "PATH_BEFORE_CONDA=%PATH%"
)
if not "%CONDA_PATH%" == "" (
call deactivate
)
set CONDA_PATH="C:\Users\pts08\Miniconda\32"
set "PATH=%CONDA_PATH%;%CONDA_PATH%\Scripts;%PATH_BEFORE_CONDA%"
echo Successfuly switched to 32-bit Conda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment