Can't use juypter notebook with my MacOS M1

Hi, I just got a new Macbook Pro 14 with M1 Pro chip. I installed the Anaconda3-2022.10-MacOSX-x86_64.pkg. When I run jupyter notebook from Anaconda Navigator. I got a 500 error message. I looked up a couple solution on stack overflow and some suggest

pip install --upgrade jupyterhub
pip install --upgrade --user nbconvert

or

conda install nbconvert==5.4.1

The above solution didn’t work. This is the log from my terminal that I am getting…
[E 05:44:29.602 NotebookApp] Uncaught exception GET /notebooks/data-analytics/ml-project/Capacity%20Planning/Untitled.ipynb (::1)
HTTPServerRequest(protocol=‘http’, host=‘localhost:8888’, method=‘GET’, uri=‘/notebooks/data-analytics/ml-project/Capacity%20Planning/Untitled.ipynb’, version=‘HTTP/1.1’, remote_ip=‘::1’)
Traceback (most recent call last):
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/tornado/web.py”, line 1704, in _execute
result = await result
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/tornado/gen.py”, line 775, in run
yielded = self.gen.send(value)
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/notebook/notebook/handlers.py”, line 94, in get
self.write(self.render_template(‘notebook.html’,
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/notebook/base/handlers.py”, line 511, in render_template
return template.render(**ns)
File “/Users/markpeng/.local/lib/python3.9/site-packages/jinja2/environment.py”, line 1301, in render
self.environment.handle_exception()
File “/Users/markpeng/.local/lib/python3.9/site-packages/jinja2/environment.py”, line 936, in handle_exception
raise rewrite_traceback_stack(source=source)
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/notebook/templates/notebook.html”, line 1, in top-level template code
{% extends “page.html” %}
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/notebook/templates/page.html”, line 154, in top-level template code
{% block header %}
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/notebook/templates/notebook.html”, line 115, in block ‘header’
{% for exporter in get_frontend_exporters() %}
File “/Users/markpeng/opt/anaconda3/lib/python3.9/site-packages/notebook/notebook/handlers.py”, line 40, in get_frontend_exporters
for name in get_export_names():
File “/Users/markpeng/.local/lib/python3.9/site-packages/nbconvert/exporters/base.py”, line 147, in get_export_names
e = get_exporter(exporter_name)(config=config)
File “/Users/markpeng/.local/lib/python3.9/site-packages/nbconvert/exporters/base.py”, line 106, in get_exporter
if getattr(exporter(config=config), “enabled”, True):
File “/Users/markpeng/.local/lib/python3.9/site-packages/nbconvert/exporters/templateexporter.py”, line 342, in init
super().init(config=config, **kw)
File “/Users/markpeng/.local/lib/python3.9/site-packages/nbconvert/exporters/exporter.py”, line 118, in init
self._init_preprocessors()
File “/Users/markpeng/.local/lib/python3.9/site-packages/nbconvert/exporters/templateexporter.py”, line 508, in _init_preprocessors
conf = self._get_conf()
File “/Users/markpeng/.local/lib/python3.9/site-packages/nbconvert/exporters/templateexporter.py”, line 528, in _get_conf
if conf_path.exists():
File “/Users/markpeng/opt/anaconda3/lib/python3.9/pathlib.py”, line 1424, in exists
self.stat()
File “/Users/markpeng/opt/anaconda3/lib/python3.9/pathlib.py”, line 1232, in stat
return self._accessor.stat(self)
PermissionError: [Errno 13] Permission denied: ‘/usr/local/share/jupyter/conf.json’
[E 05:44:29.603 NotebookApp] {
“Host”: “localhost:8888”,
“Accept”: “text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.9”,
“Referer”: “http://localhost:8888/tree/data-analytics/ml-project/Capacity%20Planning”,
“User-Agent”: “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36”
}
[E 05:44:29.603 NotebookApp] 500 GET /notebooks/data-analytics/ml-project/Capacity%20Planning/Untitled.ipynb (::1) 54.470000ms referer=http://localhost:8888/tree/data-analytics/ml-project/Capacity%20Planning

Does anyone has similar issue and how to solve that?