Skip to content

Instantly share code, notes, and snippets.

@mattn
Created March 15, 2019 02:59
Show Gist options
  • Save mattn/498df7f73d922583adcc20c7cb569e5a to your computer and use it in GitHub Desktop.
Save mattn/498df7f73d922583adcc20c7cb569e5a to your computer and use it in GitHub Desktop.
Windows だと conda activate tensorflow が動かないのでそれっぽく動く様にする為のバッチファイル
@echo off
if "%1" equ "activate" (
call %LOCALAPPDATA%\Continuum\miniconda3\Scripts\%1.bat %2 %3 %4 %5 %6 %7 %8 %9
) else (
call %LOCALAPPDATA%\Continuum\miniconda3\Scripts\conda.exe %*
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment