LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

LabVIEW from 64 bit to 32 bit

Hello.

 

I recently installed the 64-bit version of LabVIEW on my machine, but I just found out that my colleagues in the company are using the 32-bit version. To avoid compatibility issues, I’d like to uninstall the 64-bit version and replace it with the 32-bit version.

 

Could you please provide detailed steps on how to properly clean up my system to ensure a smooth transition? Specifically:

  1. Which files and folders should I delete after uninstalling the 64-bit version to avoid any conflicts?
  2. Do I need to reconfigure any drivers (e.g., NI-DAQmx, NI-VISA), or can they remain as they are for the 32-bit installation?
  3. Is there anything else I should check to ensure that my 32-bit installation will work seamlessly without duplicating unnecessary components?

I’d greatly appreciate clear guidance on this to avoid any issues with my development environment.

Thank you for your support!

 

Best regards,

 

0 Kudos
Message 1 of 5
(251 Views)

@walrus123 wrote:

Hello.

 

I recently installed the 64-bit version of LabVIEW on my machine, but I just found out that my colleagues in the company are using the 32-bit version. To avoid compatibility issues, I’d like to uninstall the 64-bit version and replace it with the 32-bit version.

 

Could you please provide detailed steps on how to properly clean up my system to ensure a smooth transition? Specifically:

  1. Which files and folders should I delete after uninstalling the 64-bit version to avoid any conflicts?
  2. Do I need to reconfigure any drivers (e.g., NI-DAQmx, NI-VISA), or can they remain as they are for the 32-bit installation?
  3. Is there anything else I should check to ensure that my 32-bit installation will work seamlessly without duplicating unnecessary components?

I’d greatly appreciate clear guidance on this to avoid any issues with my development environment.

Thank you for your support!

 

Best regards,

 


1. Use NI Package Manager to remove LV, nothing else!

2. Usually you need to reinstall DAQmx after a new LV (or several) are installed, but with the newest ones this shouldn't be necessary, so open your project and see if it works.

3. Nope, not really.

G# - Award winning reference based OOP for LV, for free! - Qestit VIPM GitHub

Qestit Systems
Certified-LabVIEW-Developer
Message 2 of 5
(216 Views)

You can have the 32-bit and the 64-bit of the same version of LabVIEW installed side by side. Granted, this could easily cause confusion for which version you have installed.

 

But, as already stated, just do all of the installing and uninstalling through NIPM.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Message 3 of 5
(189 Views)

@walrus123 wrote:

I recently installed the 64-bit version of LabVIEW on my machine, but I just found out that my colleagues in the company are using the 32-bit version. To avoid compatibility issues, I’d like to uninstall the 64-bit version and replace it with the 32-bit version.


There won't be compatibility issues if everything is pure LabVIEW and you separate compiled code. The VIs will be identical because the bitness specific compiled code is cached locally and the VI itself are identical on both systems.

 

Problems can arise if you use third party DLLs, but a conditional disable structure (with cases for 32bit and 64bit) can be used to have both in the same VI.

Message 4 of 5
(162 Views)

@altenbach wrote:

Problems can arise if you use third party DLLs, but a conditional disable structure (with cases for 32bit and 64bit) can be used to have both in the same VI.


There is also PPLs, which are compiled and therefore bitness dependent. You may also have potential issues in debugging because the bitness may matter.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Message 5 of 5
(150 Views)