Questions tagged [ironpython-studio]

IronPython Studio is a free full IDE (Integrated Development Environment) for the Python programming language.

IronPython Studio is a free full IDE (Integrated Development Environment) for the Python programming language. It is based on the existing IronPython example that is included in the VS SDK. IronPython Studio is based on the Visual Studio 2008 Shell runtime (royalty free) and can be installed without requiring any version of Visual Studio. It is available for Visual Studio 2008 Shell Isolated and Integrated modes.

Reference: http://ironpythonstudio.codeplex.com/

29 questions
16
votes
3 answers

Pros and cons of IronPython and IronPython Studio

We are ready in our company to move everything to Python instead of C#, we are a consulting company and we usually write small projects in C# we don't do huge projects and our work is more based on complex mathematical models not complex software…
Mark
  • 10,754
  • 20
  • 60
  • 81
13
votes
3 answers

IronPython :- Visual Studio 2010 or SharpDevelop?

I'm considering developing a medium-size project for a client in IronPython. It's a pretty straightforward replacement for an existing system I've been supporting for several years, so the specification is quite well defined and understood. This is…
Cruachan
  • 15,733
  • 5
  • 59
  • 112
12
votes
6 answers

How to use IronPython with Visual Studio 2008

I've tried using the IronPython integration extension provided by Microsoft. But it does not work with Visual Studio 2008. Is there a proper VS 2008 IDE extension for IronPython?
Jasim
5
votes
1 answer

run Python functions from vb.net

I am new with vb.net. I am trying to call python functions from vb.net but getting error that 'Invoke' is not a member of 'Microsoft.Scripting.Hosting.ObjectOperations' Imports Microsoft.Scripting Imports Microsoft.Scripting.Hosting Imports…
user2801184
  • 329
  • 7
  • 27
5
votes
2 answers

IronPython to Original Python comparison. What can I expect from the first one?

I wish to learn Python but I'm working all day in .Net as a C# developer, so I decided to download and install IronPython and integrated IronPython studio. How different or similar from the original Python it is? As a .Net developer can I expect to…
backslash17
  • 5,300
  • 4
  • 31
  • 46
5
votes
1 answer

deploying IronPython script or static building an application

I created an IronPython script that imports from Python libraries, such as os, sys, etc. as well as .NET libraries. It runs perfectly fine from my Visual Studio IronPython solution but I need to deploy this so other people who don't have IronPython…
Gezim
  • 7,112
  • 10
  • 62
  • 98
4
votes
1 answer

How to configure the import path in Visual Studio IronPython projects

I have built the IronPythonIntegration solution that comes with the Visual Studio 2005 SDK (as explained at http://www.izume.com/2007/10/13/integrating-ironpython-with-visual-studio-2005), and I can now use IronPython projects inside Visual Studio…
Charles Anderson
  • 19,321
  • 13
  • 57
  • 73
4
votes
1 answer

How to manually create an App.xaml file in a WPF Python Project in Visual Studio?

When we create a new WPF C# Project from Visual Studio we get 4 basic files "App.xaml","App.cs","MainWindow.xaml","MainWindow.cs" Here App.xaml file is basically used for storing application related Resources in one file to be present all over the…
Robins Gupta
  • 3,143
  • 3
  • 34
  • 57
3
votes
3 answers

IronPython for unit testing with IronPython Studios

Im looking to play with IronPython and figured that writing unit tests is a simple enough way to get started. This would essentially mean that my core applications code will still be written in C# with just my tests been python. With this in mind…
Owen
  • 6,992
  • 7
  • 44
  • 77
2
votes
1 answer

How do I run unit tests with IronPython Studio?

I have recently had to move my project from using the CPython 2.6 interpreter in Eclipse with the PyDev plugin to IronPython 2.7 interpreter using IronPython Studios in Visual Studios 2010. Unfortunately I am a bit new to VS2010 and VS in general.…
2
votes
1 answer

IronPython Excel RTDServer

How do you build a Excel RTDServer in Python/IronPython. (IE I want to implement the IRTDServer interface in Python/IronPython. So I can push data into Excel in real time from Python/IronPython) I have looked all over the place but the only…
Josh
  • 784
  • 6
  • 13
1
vote
1 answer

poor IronPython performance of external modules when debugging enabled

I am running into some performance problems with IronPython inside of VS2010 while trying to import and use SymPy. I have an IronPython test project containing the following code: import time print 'StandaloneIronPython' startTime =…
George L-W
  • 781
  • 6
  • 9
1
vote
1 answer

Does IronPython use Python 2 or Python 3?

I am new to IronPyton, but would like to start using it. From the IronPython website, I see that the current version of IronPyton is 2.7.8 My understanding is that this version is independent of the official Python version. Which version of Python…
VapUI49
  • 51
  • 2
  • 8
1
vote
1 answer

Accessing embedded resources in IronPython

I'm developing a Windows Forms Application in IronPython Studio. I want to choose an Icon for my project but both of these fail: 1- Form Properties window -> Icon (choose a *.ico file) a compile-time error occurs and is related to IronPython.targets…
Mehdi Asgari
  • 2,111
  • 3
  • 17
  • 18
1
vote
1 answer

Where is my ipy.exe?

I've got clean install of Windows 7 Ultimate, VS 2010 professional, and latest IronPython installed. In VS I can create an IronPython project just fine (seems like the install is ok), but when I try to run the project (a simple print), I get this…
Wtf1sh
  • 137
  • 2
  • 13
1
2