Getting "No module named wpf" when trying to start WPF using python 3.4 o VS2013 Express

Hi, I am starting with Visual Basic 2013 and Python. I am doing some practice with console applications with success. But when I tried to work with WPF, I see the whole GUI when building. But when I try to debug the application, I get:

No module named 'wpf'

I use Python 3.4 for debugging, and I tried installing ironpython 2.7 and changing the debugger in vs2013, but the error still persists.

What should I do? Is there a way to install this module in python or should it be a bult-in module?

+4
source share
1 answer

, IronPython/.NET, WPF CPython.

, python , .

import sys
print sys.version

,

2.7.6 ( , 10 2013, 19:24:24) [MSC v.1500 64 (AMD64)]

2.7.3 (IronPython 2.7.3 (2.7.0.40) .NET 4.0.30319.34014 (64- ))

python.

Python Tools Visual Studio (PTVS), , "" "/" , IronPython ( CPython 3.4, ). / PTVS.

+3

All Articles