简体   繁体   中英

How do I run a python script on pypy3 without using the command line on windows 10?

I recently downloaded pypy3, I've never used the command line for python, I usually run my codes on visual studio code. Is there a way to use pypy3 with something similator to "IDLE Python"?

For a change, you may use Jupyter Notebook .

在此处输入图像描述

Follow these commands on cmd for installation-

  1. type 'pip3 install jupyter-notebook'
  2. Once it's installed, just type 'jupyter-notebook' in cmd.

It will start the session and now you can create a Py notebook and write code Notebook cells.

The advantage of using Jupyter-Notebook is - you need not initialize variables processing repeatedly. You can just declare variable processing in different cells and consume them in some function in different one.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM