不知道是什么原因导致您的问题,但下面的代码没有任何问题(OSX,与您的conda版本相同)。

创造环境

conda create -n test_env python=3.6.3 anaconda
conda create
-n test_envpython=3.6.3 anacondasqlite matplotlib requests

激活

conda activate test_env

停用

conda deactivate test_env

摆脱它

conda remove -n test_env --all