Display Taxonomy Term for CPT on single-CPT.php

The function you want is get_the_terms.

$terms = get_the_terms( get_the_ID(), 'equipment_type' );
if ( $terms && ! is_wp_error( $terms ) ){
    foreach ( $terms as $term ) {
        echo $term->name;
    }
}