Une solution est d'utiliser `\pagenumbering{STYLE}` comme suit
suit (attention à la commande `\newpage` avant `\pagenumbering{arabic}`) :
\documentclass{scrreprt}
\title{Mon borapport}
\begin{document}
\pagenumbering{gobble}
\maketitle
\section{Remerciements}
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}
Introduction
\chapter{1}
\chapter{2}
\chapter{3}
\end{document}