DEV Community

Discussion on: Easily add Anaconda Prompt to Windows Terminal to make life better

Collapse
 
asgaut profile image
Asgaut Eng

If anyone want to add a Miniconda Powershell prompt add this to the settings.json file:

        {
            // Miniconda Powershell prompt for local user install (non-admin install)
            "guid": "{1caa0dad-35be-5f56-a812-afceeeaa1234}",
            "name": "Miniconda",
            "commandline": "%windir%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe -ExecutionPolicy ByPass -NoExit -Command \"& '%USERPROFILE%\\Miniconda3\\shell\\condabin\\conda-hook.ps1' ; conda activate '%USERPROFILE%\\Miniconda3' \"",
            "icon": "%USERPROFILE%\\Miniconda3\\Menu\\Iconleak-Atrous-PSConsole.ico",
            "hidden": false,
            "startingDirectory": "%HOMEPATH%"
        }
Enter fullscreen mode Exit fullscreen mode