jupyter笔记本无法启动

时间:2019-05-03 19:41:09

标签: python-3.x jupyter-notebook anaconda jupyter jupyter-lab

我已经在Win 10机器上安装了anaconda,但是jupyter笔记本电脑既没有从@Service class DelayingRequestSenderImpl(@Value("\${vk.request.interval}") private val interval: Int) : DelayingRequestSender { private var lastRequestTime: LocalDateTime = LocalDateTime.now() private val requestChannel: Channel<Deferred<*>> = Channel() //SupervisorJob is used because we want to have continuous processing of requestChannel //even if one of the requests fails private val coroutineScope = CoroutineScope(SupervisorJob()) override suspend fun <T> request(block: () -> T): T { val deferred = coroutineScope.async(start = CoroutineStart.LAZY) { block() } requestChannel.send(deferred) return deferred.await() } @PostConstruct fun startProcessing() = coroutineScope.launch { for (request in requestChannel) { val now = LocalDateTime.now() val diff = ChronoUnit.MILLIS.between(lastRequestTime, now) if (diff < interval) { delay(interval - diff) } lastRequestTime = LocalDateTime.now() request.start() } } } Anaconda Prompt也无法启动

当我执行Anaconda Navigator时,Anaconda Prompt中没有输出

enter image description here

当我在导航器中单击jupyter笔记本启动按钮时,它显示jupyter notebook,但此后什么也没发生

launching notebook

conda info

active environment : base active env location : C:\Users\Zoubi\Anaconda3 shell level : 1 user config file : C:\Users\Zoubi\.condarc populated config files : C:\Users\Zoubi\.condarc conda version : 4.6.11 conda-build version : 3.17.8 python version : 3.7.3.final.0 base environment : C:\Users\Zoubi\Anaconda3 (writable) channel URLs : https://repo.anaconda.com/pkgs/main/win-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anaconda.com/pkgs/free/win-64 https://repo.anaconda.com/pkgs/free/noarch https://repo.anaconda.com/pkgs/r/win-64 https://repo.anaconda.com/pkgs/r/noarch https://repo.anaconda.com/pkgs/msys2/win-64 https://repo.anaconda.com/pkgs/msys2/noarch package cache : C:\Users\Zoubi\Anaconda3\pkgs C:\Users\Zoubi\.conda\pkgs C:\Users\Zoubi\AppData\Local\conda\conda\pkgs envs directories : C:\Users\Zoubi\Anaconda3\envs C:\Users\Zoubi\.conda\envs C:\Users\Zoubi\AppData\Local\conda\conda\envs platform : win-64 user-agent : conda/4.6.11 requests/2.21.0 CPython/3.7.3 Windows/10 Windows/10.0.17133 administrator : False netrc file : None offline mode : False

jupyter kernelspec list

任何帮助:)

2 个答案:

答案 0 :(得分:0)

这个问题早已发生在我身上。不知道如何适当地解决该问题,但是那时我创建了一个新环境并在上面下载了jupyter笔记本。当然,值得研究的问题,但是我想您需要一个快速的解决方案。

这就是创建新环境的方式:

enter image description here

答案 1 :(得分:0)

我终于修复了它,对我来说,解决方案是将Windows 10还原到以前的还原点并重新安装Anaconda,但这一次for all users