Created
March 15, 2019 02:59
-
-
Save mattn/498df7f73d922583adcc20c7cb569e5a to your computer and use it in GitHub Desktop.
Windows だと conda activate tensorflow が動かないのでそれっぽく動く様にする為のバッチファイル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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