You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invoke-Expression ((Invoke-WebRequest -Uri https://micro.mamba.pm/install.ps1).Content) can be simplified to irm https://micro.mamba.pm/install.ps1 | iex, where irm -> Invoke-RestMethod and iex -> Invoke-Expression are built-in aliases.
The text was updated successfully, but these errors were encountered:
YouJiacheng
changed the title
Windows installation can be simplified
Windows installation command can be shorten
Nov 7, 2023
Invoke-Expression ((Invoke-WebRequest -Uri https://micro.mamba.pm/install.ps1).Content)
can be simplified toirm https://micro.mamba.pm/install.ps1 | iex
, whereirm -> Invoke-RestMethod
andiex -> Invoke-Expression
are built-in aliases.The text was updated successfully, but these errors were encountered: