I trying to use IronPython in Visual Studio Code. How do I point Visual Studio Code to my IronPython (C:\Program Files (x86)\IronPython 2.7\ipy.exe). I've searched the forums and was unsuccessful. I've tried changing visual studio code settings to point to the ipy.exe to no avail
"python.pythonPath": "C:\Program Files (x86)\IronPython 2.7\ipy.exe"
When I type the code below I get an error stating: Unable to import 'clr'
import clr
clr.AddReference('Microsoft.Office.Interop.Excel')