I am new to Python and I am trying to write my first Python application in Visual Studio CE 2015 using IronPython.
I finally managed to execute the most basic .NET-compatible code importing the clr module (which comes with the whole IronPython package), but since my goal is to write an application that reads from the USB scale after this blog post , I got stuck in an attempt to import the usb module.
I downloaded and installed both pyUSB and libusb, so I thought that I just need to add the link in the "link" section, like any other regular .NET applications, but I can not find either the link or the path to the DLL file. What is the missing link?
import clr clr.AddReferenceToFileAndPath(r"What\Is\The\Path\Going\Here?") import usb.core
python visual-studio ironpython libusb
Davide vitali
source share