My problem is straightforward, I copied the below code from the package and ran the code, but I keep getting the attached error in the picture.
\documentclass{minimal}
\usepackage{tikz}
\usepackage[]{circuitikz}[=2020/02/05]
\begin{document}
\begin{figure}
\begin{circuitikz} \draw
(0,0) node[mixer] (mix) {}
(mix.w) node[left] {w}
(mix.s) node[below] {s}
(mix.e) node[right] {e}
(mix.n) node[above] {n};
\end{circuitikz}
\end{figure}
\end{document}
Here is another code that is not working, the nodes should not connect the way it appears in the figure.
\begin{circuitikz} \draw
(0,0) node[mixer] (mix) {}
(mix.east) to node[adder,right] (add) {}++(4,0)
(mix.south) to node[oscillator,below] (osc) {}++(0,-2) ;
\end{circuitikz}
I actually tried to load all versions to see which one can solve the problem, but no one dose (please check my snapshot)




articleclass or other standard class for an MWE, it sets up all the usual document settings;minimalclass is intended for testing package-loading dependencies, and is literally minimal (3 lines of code). Eg: minimal class gives this error message:Environment figure undefined.. – Cicada Feb 12 '22 at 11:52[=2020/02/05].and use recent version ofcircuitikz. Old version doesnt have defined anchorsw,s,eandnor instead them usewest,southandeast) north˙. – Zarko Feb 12 '22 at 12:47circuitikzpackage documentation. In recent one is not such example, only is mentioned how you can rollback to use older package version. Apparently tis old version doesn't has defined such syntax for denote shape anchors. – Zarko Feb 12 '22 at 13:02circuitikzversion is1.4.6 (2022/02/04). – Zarko Feb 12 '22 at 13:52to node...in circuitikz. Where you did find it? You probably mean(mix.east) -- ++(4,0) node[adder, right](add){}? – Rmano Feb 12 '22 at 15:58node {\pgfcircversion}somewhere in your paths and check the version you have installed - you can go in the past with versions but not in the future – Rmano Feb 13 '22 at 09:16