How to set up jupyter in a conda environment?

I found a new book, Dive into Deep Learning, to learn deep learning. However, I followed the tutorial of installation. At first everything was fine, but when I started to run the example in jupyter webpage, which showed the no found module error. I checked the error message and found the it uses my system python as kernel instead of the python on my activation environment. So I asked ChatGPT and found the solution...

Set up an isolated python environment

In practial, we may encounter dependecy error when installing python packages through pip command. To address this problem, setting up an isolated and clean environment of python is necessary. After doing some research, I decided to use anaconda to address my problem...