Separate the anaconda environment from Jupyterhub

I installed the Jupiterhub environment in conda,
but I want to change it like I installed it with pip.
(Anaconda has an enterprise version issue ;P)

I have installed and used jupyterhub on CentOS7,
and the most reliable way is to uninstall and reinstall with pip,

But is there a way to completely separate the anaconda environment from the jupyterhub with minimal ways?

Sure. JupyterHub is a package like any other, so you can install it in an environment:

conda create -n my-hub-env jupyterhub

or a virtualenv:

python3 -m venv /path/to/hub/env
/path/to/hub/env/bin/pip install jupyterhub