Visual Studio – "The environment IronPython|2.7-32 appears to be incorrectly configured or missing"

Question:

Steps to the Reproduce:

  1. Open Visual Studio 2017 (Pro on Windows 10 64-bit)
  2. File > New Project > IronPython Application
  3. Run the default program: print('Hello world')

When I run it, I get the following error:

The environment “IronPython|2.7-32” appears to be incorrectly configured or missing.
You may need to install it or create a virtual environment

Python Error

I went to VS Installer, Individual Components tab, Compilers section, and checked on the Python 2.7 & 3.6 selections, but I’m still getting the problem

Asked By: Doug Null

||

Answers:

You need to set up the IronPython 2.7 environment*.
*Currently you cannot do it through the Visual Studio Installer (there isn’t an IronPython Package option to install).

  1. You need to download IronPython and install it separately from Github.
  2. After it’s installed, you need to select the correct python environment within your VS project.
  3. If the IronPython 2.7 environment is not properly set then you have to do it manually

Hopefully, Microsoft will patch this in the future.

Answered By: Geo Angelopoulos

Download the msi file for IronPython from Github. Then copy the path where it is downloaded and add it to the path in the system environment variable. Then restart visual studio. Select the project and set the python environment to IronPython.

Answered By: Done M J

When switching from Python 3.8 to 3.9 I came across the same error (also with pylint). I simply edited the project.pyproj (xml) file from: <InterpreterId>Global|PythonCore|3.8</InterpreterId> to: <InterpreterId>Global|PythonCore|3.9</InterpreterId>.

Answered By: dduck

This is Jan 2023, I am using Visual Studio Community 2022, I only needed to follow this,

https://learn.microsoft.com/en-us/visualstudio/python/managing-python-environments-in-visual-studio?view=vs-2022#the-python-environments-window

then set the version of Python I am using as a default environment.
Did not need IronPython.

Answered By: NamelessCosmicDust