When I create a new environment on Ubuntu 20.04 using Anaconda 23.7.4 with the command
conda create -n NewEnv python=3.8
where the specified Python version is the same as the system version (python3.8), the newly created environment inherits the site-packages of the system Python. I tried using different minor versions of python3.8, but the situation did not change. However, when I create a conda environment with other Python versions (such as python3.9 or python3.10), this issue does not occur.