# Install Libraries

The Feather Sense is packed full of sensors. If already have CircuitPython installed on your Feather Sense, next you'll need to install a base set of CircuitPython libraries to use the features of the board with CircuitPython.

Follow these steps to get the necessary libraries installed.

### Installing CircuitPython Libraries on your Feather Sense

Firstly, [download the CircuitPython library bundle](https://circuitpython.org/libraries) that matches your version of CircuitPython from CircuitPython.org. The libraries [bundle for old CircuitPython 8.x is available here](https://github.com/adafruit/Adafruit_CircuitPython_Bundle/releases/download/20250213/adafruit-circuitpython-bundle-8.x-mpy-20250213.zip).

The bundle downloads as a .zip file. Extract the file anywhere on your PC/Laptop. Open the resulting folder.

<figure><img src="https://1642858864-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MW_pkggCd-D5nsvstvb%2Fuploads%2F8pzeHPFtoi1zCaSiX1PY%2Fimage.png?alt=media&#x26;token=95e674cf-3a42-4cc3-889b-288ec19bc83b" alt=""><figcaption></figcaption></figure>

Open the **lib** folder found within.

<figure><img src="https://1642858864-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MW_pkggCd-D5nsvstvb%2Fuploads%2F8rXNvUjVCoDLspMAKzIB%2Fimage.png?alt=media&#x26;token=f3cc8301-91c6-485d-99ee-ca864c4e049f" alt=""><figcaption></figcaption></figure>

Once inside, you'll find a lengthy list of folders and **.mpy** files. To install a CircuitPython library, you drag the file or folder from the bundle lib folder to the **lib** folder on your **CIRCUITPY** drive. If you do not already have a **lib** folder on your **CIRCUITPY** drive, create one now.

<figure><img src="https://1642858864-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MW_pkggCd-D5nsvstvb%2Fuploads%2Ftw0LgBhNevW5NXw8e7iP%2Fimage.png?alt=media&#x26;token=902b631c-2b0f-44e5-bada-7d615d48efd9" alt=""><figcaption></figcaption></figure>

Copy the following folders and files from the bundle **lib** folder to the **lib** folder on your **CIRCUITPY** drive:

* **adafruit\_apds9960**
* **adafruit\_bmp280.mpy**
* **adafruit\_bus\_device**
* **adafruit\_lis3mdl.mpy**
* **adafruit\_lsm6ds**
* **adafruit\_register**
* **adafruit\_sht31d.mpy**
* **neopixel.mpy**

Your **lib** folder should look like the image below. These libraries will let you run the demo sensor data acquisition program.

<figure><img src="https://1642858864-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MW_pkggCd-D5nsvstvb%2Fuploads%2FnhEZNXjsAju4efnSq9NN%2Fimage.png?alt=media&#x26;token=fd2df6de-8eb7-4e3b-97c9-7f6a7b6d88c9" alt=""><figcaption></figcaption></figure>

### Libraries Docs

[LIS3MDL](https://docs.circuitpython.org/projects/lis3mdl/en/latest/)\
[LSM6DS](https://docs.circuitpython.org/projects/lsm6dsox/en/latest/)\
[BMP280](https://docs.circuitpython.org/projects/bmp280/en/latest/)\
[Neopixel](https://docs.circuitpython.org/projects/neopixel/en/latest/)\
[APDS9960](https://docs.circuitpython.org/projects/apds9960/en/latest/)\
[SHT31D](https://docs.circuitpython.org/projects/sht31d/en/latest/)<br>

<br>
