Skip to content

Instantly share code, notes, and snippets.

View mihaiginta's full-sized avatar

Mihai Gînța mihaiginta

  • Franka Emika
  • Munich
View GitHub Profile
@mihaiginta
mihaiginta / installMiniforge.ps1
Last active January 12, 2025 17:44
Install Miniforge on Windows
# https://docs.anaconda.com/anaconda/advanced-install/silent-mode/
# https://gist.github.com/AdrianBenson/f4d7419982e2ab483dc2b7a32f11534c
curl https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe -o miniconda.exe
Start-Process -FilePath ".\miniconda.exe" -ArgumentList "/InstallationType=JustMe /RegisterPython=0 /S /D=%UserProfile%\Miniforge3" -Wait
Remove-Item miniconda.exe
# https://github.com/robotology/robotology-superbuild/blob/master/doc/install-miniforge.md