There is no best solution, it will depend on your applications design. MEF isn't a general purpose IoC container (unlike Unity, Autofac etc), and its focus is on the discoverability of types and their composition.
It is suitable for composite applications where extensions can be discovered at runtime and integrated into the application's shell. Its strength is in the fact that supporting assemblies can be dropped into a specified folder and be picked up without any additional work.
Unity etc are more general purpose and provide capabilities beyond MEF and in addition to object composition are also focused towards other dimensions of DI such as lifetime management and interception.
There's nothing to stop you using both MEF for supporting extensions/plugins, and a more general purpose IoC container such as Unity/Autofac/Castle Windsor for your applications general DI infrastructure.
If you're new to DI, then perhaps stick with MEF for the time being as it will offer all of the object composition features you will require, and Rob has already provided an implementation of the Bootstrapper which uses MEF.