Jump to content

VI Package Manager: Difference between revisions

From LabVIEW Wiki
Line 6: Line 6:


<code>
<code>
sudo chmod -R a+w "/Applications/National Instruments/LabVIEW 2024 64-bit"
find "/Applications/National Instruments/LabVIEW 2024 64-bit" -type d -print0 | sudo xargs -0 echo chmod o+w
</code>
</code>


[[Category:Third party LabVIEW tools]]
[[Category:Third party LabVIEW tools]]

Revision as of 19:55, 2 October 2024

VI Package Manager[1] (VIPM) is a cross-platform desktop application for downloading and installing LabVIEW tools. Specifically, all of the OpenG tools are available from within VIPM. VIPM is made by JKI.

Installing VI Package Manager on macOS

The latest security policies prevent writing to the LabVIEW directory by default. To use VIPM to write files to user.lib, change the write permission using the terminal by running the following command:

find "/Applications/National Instruments/LabVIEW 2024 64-bit" -type d -print0 | sudo xargs -0 echo chmod o+w