使用jupyter或pyinstaller时区分python2和python3

时间:2018-10-16 08:22:57

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

我在计算机(Windows)中同时安装了python 2.7和python 3.7,通过一些设置,可以通过CMD窗口使用python / pip / ipython或python3 / pip3 / ipython3分别调用它们。

但是,即使我已将python37 / Scripts文件夹下的'jupyter.exe'更改为'jupyter3.exe',我也无法实现'jupyter qtconsole'打开python2内核和'jupyter3 qtconsole'打开python3内核。 (这两个命令都打开python 2.7内核。'ipythonqtconsole'和'ipython3 qtconsole'可以解决问题,但是据说不建议使用ipython命令,并且在以后的版本中将删除该命令)

此外,我同时使用pip和pip3安装了pyinstaller,有没有办法让pyinstaller打包some_py2_script.py和pyinstaller3打包some_py3_script.py?目前看来,即使它是py3脚本,也使用pyinstaller在python2下打包。

谢谢!

0 个答案:

没有答案