$url = 'https://raw.githubusercontent.com/anonhostpi/ironpython3/iex-web-support/eng/scripts/Install-IronPython.ps1' iex ((New-Object System.Net.WebClient).DownloadString($url)) Import-Module ".\IronPython.dll" & { [IronPython.Hosting.Python]::CreateEngine(). CreateScriptSourceFromString("print('Hello from embedded IronPython!')"). Execute() }