I have a system of equations and I used aligned environment to get a one number as label se here but I am not able to refer to it. I searched here and other places but all shows how to refer to equation when it is labeled using \label. However using label in aligned environment with \begin equation doesn't work.
\documentclass[14pt, a4paper, twoside]{report}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{aligned}
\frac{d\bar{x}(\tau)}{d\tau}=\quad&\bar{x}\left[1-\bar{x}-\bar {y}_{1}-\bar{y} _{2} \right] +\bar{s}(\tau),\quad \bar{x}(0)>0\\
\frac{d\bar{y}_{1}(\tau)}{d\tau}=\quad& \bar{y}_{1} \left[-\bar{\epsilon}_{1}-\bar{\omega}_{11}\bar {y}_{1}-\bar{g}_{12}\bar{y}_{2}+\bar{\beta}_{1}\bar{x}\right],\quad \bar{y}_{1}(0)>0 \\
\frac{d\bar{y}_{2}(\tau)}{d\tau}=\quad& \bar{y}_{2} \left[-\bar{\epsilon}_{2}+\bar{\gamma_{12}}\bar{y}_{1}-\bar{\omega}_{22}\bar {y}_{2}+\bar{\beta}_{2}\bar{x}\right],\quad \bar{y}_{2}(0)>0 \\
\end{aligned}
\end{equation}
\end{document}
In my document the system get the label (5.1) because it is inside chapter 5 but I want to refer to this other places. I can of course just write (5.1) but want more systematic way.

\ref{label}inside the equation and then reference it elsewhere using\eqref{label}. – bclzyjhr Apr 28 '20 at 23:06\label{text}in the equation environment, then refer to it with\eqref{text}outside. – bclzyjhr Apr 28 '20 at 23:14alignedwhich does not affect the number or cross reference a at all. Just use\begin{equation}\label{zzzz}then reference it as... see \eqref{zzzz}from the text. – David Carlisle Apr 28 '20 at 23:26\label{eq:pft}after\begin{equation}and\eqref{eq:pft}somewhere e.g. after\end{equation}, I get a reference. It is just an unfortunate practice to use one equation number (rather thansubequations), but not as bad as non-upright differentialds. – Apr 28 '20 at 23:26