-1

Is it possible to execute python code on a device in transparent way if python is not installed on it?

CDspace
  • 2,639
  • 18
  • 30
  • 36
user203520
  • 23
  • 2
  • Python is an "interpreted" language. This means that the environment has to have the python runtime installed in order for your script to run. – Olian04 Jan 29 '17 at 17:20
  • 7
    Possible duplicate of [python: Can I run a python script without actually installing python?](http://stackoverflow.com/questions/5539736/python-can-i-run-a-python-script-without-actually-installing-python) – Chris_Rands Jan 29 '17 at 17:23

2 Answers2

0

Not sure exactly what you are asking for, but if you are using a mac (e.g. OS10.9), there should be a built-in python 2.7. In the command line terminal, you can type in :

USER$ python
## Python 3.5.2 |Continuum Analytics, Inc.| (default, Jul  2 2016, 17:52:12) 
## [GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] on darwin
## Type "help", "copyright", "credits" or "license" for more information.
>>> 

There are also third-party web-based software such as Python Tutor that you can use. Internet access required.

David C.
  • 1,974
  • 2
  • 19
  • 29
-1

There are many web based apps that you can find by searching in Google, such as: repl.it and Google Console.

kda
  • 194
  • 11