I've successfully installed the SICP package for DrRacket; and I tested it by using the inc operator in the GUI. I followed the instructions here.
However, when I run racket in bash, using the inc operator gives me an error.
Welcome to Racket v6.6.
> (inc 42)
inc: undefined; cannot reference undefined identifier context...: /usr/share/racket/collects/racket/private/misc.rkt:88:7
Clearly, I haven't installed it properly. So what do I do?
EDIT 1: Additionally, the 1+ and the -1+ operators give a similar error, for both DrRacket's GUI and racket in bash.
incand1+are not standard, you should not use them anyway. Better useadd1, which is supported in Racket... - Óscar Lópezinc,1+- Óscar Lópezinc, while in the video lectures of the original course they use1+. - Nadim Hussami