When I put something in libraries, it doesnt work

Im working on a home automation project, and im new to arduino. I am required to include These things:
#include <Adafruit_CC3000.h>
#include <SPI.h>
#include <CC3000_MDNS.h>
#include <aREST.h>

I put them in my arduino libraries folder... PLease let me know if i am doing this correctly and if not tell me how to do it.

Yes that's where they go. Install them from the menu if they are available there

BobFromAlaska1:
I put them in my arduino libraries folder... PLease let me know if i am doing this correctly and if not tell me how to do it.

Depends on which 'libraries' folder you mean. There are at least two: one in the Ardiuno IDE installation and one in your sketch folder. Third-party libraries go in the one in your sketch folder. Each library in a separate sub-folder with the same name as the main *.h file.
Note: If you download a .zip of library sources from github, the folder created when you unpack the .zip file will often have '_master'. Remove that part of the folder name.