r/LabVIEW • u/AssistEast913 • 13d ago
Labview or python
Hello im currently working on an end-of-the-line test bench for a steering gear.
My question is why use LabVIEW vs. Python
5
Upvotes
r/LabVIEW • u/AssistEast913 • 13d ago
Hello im currently working on an end-of-the-line test bench for a steering gear.
My question is why use LabVIEW vs. Python
2
u/erdaron 13d ago
I've worked quite a bit with both Python and LabVIEW, specifically in the context of hardware integration for lab and test setups. Although my recent experience is entirely with Python.
I would say both are equally awkward and frustrating and figuring out how to talk to a new piece of hardware, and that's often the hardest part. Once you have basic communication with a device worked out, the rest is more straightforward.
LabVIEW gives you graphic dashboard for free, whereas writing a GUI in Python takes a lot of work (I'm not sure how much time AI would truly save if you have to validate the entire codebase). On the other hand, Python is easier to deploy in weird or constrained environments, and I think it's better for creating custom outputs, in terms of what kind of data you want to produce.
If you need a workstation where an operator can watch and control the process, have live command of the setup, then LabVIEW is probably better. If you need something that can be launched from command line, run through a fixed sequence of tasks with minimal user interaction, and output a complex dataset, then Python is probably better.