Because (unlike say python) you can only import packages you have explicitly added to your project. This is necessary for Julia to track dependencies effectively and ensure you always have a compatible set of packages installed.
For example, if you were allowed to use GR without adding it, then if a future version of Plots decides to change its default backend and no longer depend on GR then when you update Plots your own project will break because GR is no longer there.