Suppose we have two vectors in $u, v \in \mathbb{R}^d$. For $p \geq 1$, the Minkowski distance between these vectors is defined as
$ \lVert u - v \rVert_p = \Bigl( \sum_{i=1}^d \lvert u_i - v_i \rvert^p \Bigr)^{1/p}. $
This family of distances includes the familiar Euclidean distance ($p = 2$), and the less familiar, but still physically meaningful Manhattan distance ($p = 1$).
When $1 < p < 2$, we can interpret the Minkowski distance as measuring (in a Euclidean sense) a path "between" the paths measured by the Manhattan and Euclidean distance, since
$ \lVert u - v \rVert_2 \leq \lVert u - v \rVert_p \leq \lVert u - v \rVert_1. $
Is there any physically meaningful or intuitive interpretation when $p > 2$?
Note: I am aware of this less specific question.