I created a new conda environment myenv
and the only package I installed is the uncommon package astropy
.
I ran jupyter notebook
out of this activated environment myenv
, just to see that myenv
isn't activated and I need the package nb_conda
to activate it, which I then installed.
Now its possible for me to select and activate myenv
and to import the aforesaid package. However, if I switch to any other environment ("Change kernel"), then the package astropy
is still loaded, eventhough it is not installed.
Now Im thinking that the kernel wasn't switched afterall. But this also cannot be, since it's not possible for myenv
to load any other package of another environment.
What am I missing?
Cheers
EDIT 1: I just noticed: whenever I run the aforesaid package in the base (?) environment Python3
, then a hidden directory .astropy
is created in my home path C:\Users\me\
. In this hidden directory I can see two .cfg
-files. Maybe this all has something to do with my question?
Why at all is this hidden directory created? Does every python package create such a hidden folder?