I'm wondering why I can't use the package svg with teXnicCenter. I've seen that one must use shell escape to make it functions. I've also downloaded the latest version of inkscape and of ImageMagick. So I've written that in my build profile :
--shell-escape -synctex=-1 -max-print-line=120 -interaction=nonstopmode "%wm"
I've put the shell first beacause I've seen that sometimes it would work better.
Here is my minimal code :
\documentclass{article}
\usepackage{svg}
\usepackage{amsmath}
\title{Inkscape package on Overleaf }
\begin{document}
\begin{figure}[htbp]
\centering
\includesvg[inkscapelatex=false,width=\linewidth]{test}
\caption{svg image}
\end{figure}
\end{document}
And I've checked my log file. Here are the parts concerned by escape :
Package svg Info: Calling Inkscape on input line 9. runsystem(inkscape -z -D --file="test.svg" --export-pdf="test_svg-raw.pdf" )...executed.
Package svg Warning: The export with Inkscape failed for file (svg) `test.svg' (svg) Troubleshooting: Please check in the log file how (svg) the invocation of Inkscape took place and try to (svg) execute it yourself in the terminal on input line 9. ! Package svg Error: File `test_svg-raw.pdf' is missing. See the svg package documentation for explanation. Type H <return> for immediate help. ... l.9 ...inkscapelatex=false,width=\linewidth]{test} Did you run the export with Inkscape? There's no file `./svg-inkscape/test_svg-raw.pdf' although `test.svg' was found. [1
So, I don't really understand what is faulty here. Thanks if you can direct me in the right direction to make it work.

inkscape --versionif you get the response 'inkscape' is not recognized as an internal or external command, operable program or batch file. then it did not install itself on your path so you need to do it manually. If you are not sure which folder it is in and on windows the cmd is> where /r \ inkscape If you do get the version shown any where from your system then the --shell-escape did not work for a similar answer see https://tex.stackexchange.com/a/474119/170109 – Apr 01 '19 at 19:09