Package setspace not working

memoirsetspace

I can't get setspace package working:

\documentclass[a5paper, 11pt]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[spanish,es-tabla]{babel}
\usepackage{setspace}

\begin{document}
\begin{spacing}{1.5}  
  Texto  
\end{spacing}
\end{document}

When I pdflatex it, I get:

! LaTeX Error: Environment spacing undefined.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.8 \begin{spacing}
                   {1.5}

But I have it installed:

enter image description here

I tried to uninstall and re-install it (just in case), but TeX Live Manager won't allow it:

tlmgr: not removing setspace, needed by collection-latexrecommended
tlmgr: no packages removed.
tlmgr: action remove returned an error; continuing.
Completado.

I have checked setspace package not working in TeX Live , but it doesn't help.

Best Answer

memoir suppresses the setspace package and has its own version:

\documentclass[a5paper, 11pt]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[spanish,es-tabla]{babel}
%%\usepackage{setspace}

\begin{document}
\begin{Spacing}{1.5}  
  Texto  
\end{Spacing}
\end{document}