- Download Miniconda windows from here: https://repo.anaconda.com/miniconda/ (taken from https://docs.conda.io/en/latest/miniconda.html)
- Extract the installer with 7zip. or
conda-installer.exe /InstallationType=JustMe /AddToPath=0 /S /RegisterPython=0 /D=%cd%\conda_install
- Rename the conda installation directory.
- Make a new bat file,
run.bat
- Add the following code:
set PATH=%PATH%;%cd%/miniconda3/;%cd%/miniconda3/condabin;%cd%/miniconda3/Scripts
doskey python = %cd%/miniconda3\python.exe $*
doskey pythonw = %cd%/miniconda3\pythonw.exe $*
doskey pip = %cd%/miniconda3\Scripts\pip.exe $*
doskey pip3 = %cd%/miniconda3\Scripts\pip3.exe $*