[Tex/LaTex] Trouble getting AUCTeX to load with emacs update

auctexemacs

I have just updated to Gnu Emacs 24 and am having trouble getting AUCTeX working. I have used the Emacs package manager to install AUCTeX 11.89, and I have (require 'tex-site) in my .emacs file. But when .emacs is loaded I get the error message: "File error: Cannot open load file, no such file or directory, tex-site"

What am I missing?

Best Answer

Like Romain Picot said, when AUCTeX is installed with the Emacs Package manager, .emacs should not contain "(require 'tex-site)". I also needed to add /usr/texbin to my PATH in my .emacs file:

(setenv "PATH" (concat (getenv "PATH") ":/usr/texbin"))
(setq exec-path (append exec-path '("/usr/texbin")))