报错情况

当启动jupyter notebook 或者 jupyter lab时候出现如下报错:
windows conda Permission to listen on port 8888 denied

解决办法

## 法一:临时
# 通过如下命令,指定端口号启动jupyter
jupyter notebook --port 9999 

## 法二:永久
# 生成配置文件
jupyter notebook --generate-config
# 打开上面的文件
C:\user\**\jupyter\jupyter_notebook_config.py
# 修改文件内容为
c.NotebookApp.port = 9999

欢迎关注量哥的公众号【无量python】,进群一起交流python技术。

windows conda Permission to listen on port 8888 denied

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2021-11-26
  • 2021-07-22
  • 2022-12-23
  • 2022-01-18
猜你喜欢
  • 2022-12-23
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
  • 2021-08-29
  • 2021-06-29
  • 2021-05-28
相关资源
相似解决方案