Last Update: 11/23/2025
If you installed Origin with All users accessible and later run Origin and installed a Python package (e.g. numpy) under Windows user account A, this package should be used for all Windows user accounts.
For those upgraded from Origin 2023b/2024/2024b to Origin 2025 or later,
If you failed to run the installed Python packages by another user account, and received error message like following:
Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\ProgramData\OriginLab\101b\PyPackage\Py3\originpro\__init__.py", line 9, in <module> from .config import * File "C:\ProgramData\OriginLab\101b\PyPackage\Py3\originpro\config.py", line 61, in <module> np.float64: po.DF_DOUBLE, ^^^^^^^^^^ AttributeError: module 'numpy' has no attribute 'float64'
To fix this problem:
pip freeze > d:\packages.txt; //you can change the path as desired
pip uninstall *;
pip install -r d:\packages.txt;
pip install originpro --upgrade;
Keywords:python, package, numpy, different account, log in account, user profile, permission