Install Anaconda Python in Windows PowerShell
Conda supports Python in PowerShell. Update to latest conda from Command Prompt / Terminal:
conda update conda
Setup the new shell support (PowerShell, Bash, Command Prompt, etc.) with
conda init
Reopen terminal to see new conda environment.
You may get an error upon opening PowerShell like:
Documents\WindowsPowerShell\profile.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170
Consider ExecutionPolicy like:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned