I have an issue with package management with conda when in comes to available packages. For example:
- I made a clean Anaconda install
I'm created a new env:
conda create --name new_env
This is successful.
I start it:
source activate new_env
This is successful.
I list the available packages:
conda list
This returns no package installed as expected and desired.
Problem: Even though env is 'clean' all packages are available to use (either I run spyder or from generic python console - for example Flask)
Question: How do I isolate available components when creating new env so only components explicitly installed in it are available?(returned by conda list
)