在安装pypy内核到jupyter notebook时出现问题

12 浏览
0 Comments

在安装pypy内核到jupyter notebook时出现问题

我正在尝试将pypy3安装到jupyter notebook中,但在cmd安装过程中,在源代码部分给我报了一个错误。我使用的是Windows 10 64位系统。这一部分会影响到什么吗?根据我对大文件回测的测试,与Python相比,运行时间并没有显著提高,这让我觉得pypy可能没有正常工作。我正在尝试执行stackoverflow上这个先前问题的答案:enter link description here。即使source PyPy3/bin/activate这部分代码不能正常工作,但pypy内核仍然显示在jupyter notebook中。\njupyter notebook安装的cmd代码:\n

pypy3 -m venv PyPy3
source PyPy3/bin/activate
pypy3 -m pip install ipykernel
ipython kernel install --user --name=PyPy3

\ncmd结果-请注意,除了source PyPy3/bin/activate之外,所有其他命令都有效:\n

C:\Users\maste>pypy3 -m venv PyPy3
C:\Users\maste>source PyPy3/bin/activate
'source' 不是内部或外部命令,也不是可运行的程序或批处理文件。

\nJupyter Notebook:\n\"enter

0
0 Comments

在安装pypy内核到jupyter notebook过程中出现问题的原因是在Windows命令提示符中使用了"source"命令,但"source"命令只能在POSIX环境下使用。解决方法是使用以下命令替代:

PyPy3\Scripts\activate.bat

具体的命令如下:

PyPy3\Scripts\activate.bat

更多关于虚拟环境激活命令的信息可以参考venv文档,该文档中还包含了一个方便的命令激活虚拟环境的表格。

虚拟环境激活命令表格如下所示:

[![Activating a virtual environment](https://i.stack.imgur.com/Vze8M.png)](https://i.stack.imgur.com/Vze8M.png)

(注:上述文字为整理后的结果,可能与原文有所删减或修改)

0