Python Forum
How to provide python scripts to someone without python installed
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to provide python scripts to someone without python installed
#4
Python is an interpretive language. A statement is compiled as it is encountered, the compiler (and interrupter) are separate from the script,
but the script is dependent on them to run.

Other languages that are interpreted include Java which is actually a hybrid, it's first compiled into byte code that must be run by JVM
Lisp, Pike, Ruby and Forth are others.

Interpretive languages can be run as the code is entered, making them ideal for development.

Compiled languages like C, C++, Fortran or Pascal must first be compiled, so development is a cycle of write code, compile, test, but when
done, you have an executable program that will run on it's own.

There are scripts that bundle other scripts and interpreter together so they can be run without having an installed interpreter installed,
Pyinstaller is one of these
Reply


Messages In This Thread
RE: Need a question answered - by Yoriz - Dec-15-2016, 07:21 PM
RE: Need a question answered - by micseydel - Dec-15-2016, 07:22 PM
RE: Need a question answered - by Larz60+ - Dec-15-2016, 07:35 PM
RE: Need a question answered - by micseydel - Dec-15-2016, 07:36 PM
RE: Need a question answered - by Ofnuts - Dec-15-2016, 11:18 PM
RE: Need a question answered - by jak123456 - Dec-16-2016, 08:04 AM
RE: Need a question answered - by Larz60+ - Dec-16-2016, 10:43 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python Launcher (on Windows) only necessary when 2 or more Python versions installed? pstein 1 370 Feb-17-2024, 12:43 PM
Last Post: deanhystad
  Trying to us python.exe from our network to run scripts cubangt 3 926 Aug-17-2023, 07:53 PM
Last Post: deanhystad
  output provide the filename along with the input file processed. arjunaram 1 974 Apr-13-2023, 08:15 PM
Last Post: menator01
  Randomizer script to provide options based on user and priority cubangt 10 2,544 Mar-11-2022, 07:22 PM
Last Post: cubangt
  Installed versions of Python SamHobbs 5 2,621 Sep-02-2021, 02:28 PM
Last Post: jefsummers
  Running python scripts from github etc pacmyc 7 3,794 Mar-03-2021, 10:26 PM
Last Post: pacmyc
  I seem to have two versions of python 3.7.9 installed miner_tom 7 4,555 Nov-22-2020, 06:42 PM
Last Post: miner_tom
  Reading SQL scripts from excel file and run it using python saravanatn 2 2,633 Aug-23-2020, 04:49 PM
Last Post: saravanatn
  No Scripts File present after python installation ag2207 5 4,977 Jul-30-2020, 11:11 AM
Last Post: buran
  Package installed through Anaconda "not found" by Python zonova 0 2,345 May-08-2020, 11:50 PM
Last Post: zonova

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020