Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 757 Bytes

import_sensortoolkit.rst

File metadata and controls

31 lines (20 loc) · 757 Bytes

Importing sensortoolkit

To create scripts that utilize the sensortoolkit library, it’s recommended that users develop their code in the integrated development environment (IDE). Anaconda comes with the Spyder IDE, which can be accessed via the Anaconda Prompt with the following command:

spyder

Once the IDE opens, the sensortoolkit library can be imported in the same manner as other python packages via the following code:

import sensortoolkit

Tip

Users can verify that the sensortoolkit library is loaded properly by checking the library version:

import sensortoolkit
print(sensortoolkit.__version__)

Console output: