Which one wire library

In the libraries are found

DallasTemperature
MAX31850 DallasTemp
MAX31850 OneWire
OneWire

On hand are some DS18B20 sensors and an Arduino DUE. Soon I will have the UNO for comparison.

My project combines five DS18B20 with several analog inputs, using an Ethernet board for communications.

Which of the libraries is the best choice?

And if the best one is not shown when I select Sketch -> Include Library -> Manage Library
How it is added? My IDE shows a selection only, not an add function.
I use the IDE for Windows 10 and strongly prefer to have everything needed on my local drive.

DallasTemperature handles the DS18B20. Take a look at the source code and examples for that library. You'll see that it uses OneWire. So, those two.

I just use OneWire.h

#include <OneWire.h>            // Driver for DS18X Temperature Sensors.

Works fine here.

Ok, and thanks for your time.

What are the steps to add a library to the list that the IDE already displays?