Software Exercise 2.3: Using Python, Pre-Built¶
In this exercise, you will install Python, package your installation, and then use it to run jobs. It should take about 20 minutes.
Background¶
We chose Python as the language for this example because: a) it is a common language used for scientific computing and b) it has a straightforward installation process and is fairly portable.
Running any Python script requires an installation of the Python interpreter. The Python interpreter is what we're using when we type python
at the command line. In order to run Python jobs on a distributed system, you will need to install the Python interpreter (what we often refer to as just "installing Python"), within the job, then run your Python script.
There are two installation approaches. The approach we will cover in this exercise is that of "pre-building" the installation. We will install Python to a specific directory, and then create a tarball of that installation directory. We can then use our tarball within jobs to run Python scripts.
Interactive Job for Pre-Building¶
The first step in our job process is building a Python installation that we can package up.
- Create a directory for this exercise on
learn.chtc.wisc.edu
andcd
into it. -
Download the Python source code from https://www.python.org/.
username@learn $ wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz
-
Of our options - submit server, interactive job, personal computer - which should we use for this installation/packaging process? Once you have a guess, move to the next step.
-
Due to the number of people on our submit server, we shouldn't use the submit server. Your own computer probably doesn't have the right operating system. The best place to install will be an interactive job. For this job, we can use the same interactive submit file as Exercise 2.2, with one change. What is it?
-
Make a copy of the interactive submit file from Exercise 2.2 and change the
transfer_input_files
line to the Python tarball you just downloaded. Then submit it using the-i
flag.username@learn $ condor_submit -i build.submit
-
Once the interactive job begins, we can start our installation process. First, we have to determine how to install Python to a specific location in our working directory.
- Untar the Python source tarball and look at the
README.rst
file in thePython-3.7.0
directory. You'll want to look for the "Build Instructions" header. What will the main installation steps be? What command is required for the final installation? Once you've tried to answer these questions, move to the next step. -
There are some basic installation instructions near the top of the
README
. Based on that short introduction, we can see the main steps of installation will be:./configure make make test sudo make install
This three-stage process (configure, make, make install) is a common way to install many software packages. The default installation location for Python requires
sudo
(administrative privileges) to install. However, we'd like to install to a specific location in the working directory so that we can compress that installation directory into a tarball. -
You can often use an option called
-prefix
with theconfigure
script to change the default installation directory. Let's see if the Pythonconfigure
script has this option by using the "help" option (as suggested in theREADME.rst
file):username@host $ ./configure --help
Sure enough, there's a list of all the different options that can be passed to the
configure
script, which includes--prefix
. (To see the--prefix
option, you may need to scroll towards the top of the output.) Therefore, we can use the$PWD
command in order to set the path correctly to a custom installation directory.
- Untar the Python source tarball and look at the
-
Now let's actually install Python!
-
From the job's main working directory, create a directory to hold the installation.
username@host $ cd $_CONDOR_SCRATCH_DIR username@host $ mkdir python
-
Move into the
Python-3.7.0
directory and run the installation commands. These may take a few minutes each.username@host $ cd Python-3.7.0 username@host $ ./configure --prefix=$PWD/../python username@host $ make username@host $ make install
Note
The installation instructions in the
README.rst
file have amake test
step between themake
andmake install
steps. As this step isn't strictly necessary (and takes a long time), it's been omitted above. -
If I move back to the main job working directory, and look in the
python
subdirectory, I should see a Python installation.username@host $ cd .. username@host $ ls python/ bin include lib share
-
I have successfully created a self-contained Python installation. Now it just needs to be tarred up!
username@host $ tar -czf prebuilt_python.tar.gz python/
-
-
Before exiting, we might want to know how we installed Python for later reference. Enter the following commands to save our history to a file:
username@host $ history > python_install.txt
-
Exit the interactive job.
username@host $ exit
Python Script¶
-
Create a script with the following lines called
fib.py
.import sys import os if len(sys.argv) != 2: print('Usage: %s MAXIMUM' % (os.path.basename(sys.argv[0]))) sys.exit(1) maximum = int(sys.argv[1]) n1 = n2 = 1 while n2 <= maximum: n1, n2 = n2, n1 + n2 print('The greatest Fibonacci number up to %d is %d' % (maximum, n1))
-
What command line arguments does this script take? Try running it on the submit server.
Wrapper Script¶
We now have our Python installation and our Python script - we just need to write a wrapper script to run them.
- What steps do you think the wrapper script needs to perform? Create a file called
run_fib.sh
and write them out in plain English before moving to the next step. - Our script will need to
- untar our
prebuilt_python.tar.gz
file - access the
python
command from our installation to run ourfib.py
script
- untar our
- Try turning your plain English steps into commands that the computer can run.
-
Your final
run_fib.sh
script should look something like this:#!/bin/bash tar -xzf prebuilt_python.tar.gz python/bin/python3 fib.py 90
or
#!/bin/bash tar -xzf prebuilt_python.tar.gz export PATH=$(pwd)/python/bin:$PATH python3 fib.py 90
-
Make sure your
run_fib.sh
script is executable.
Submit File¶
-
Make a copy of a previous submit file in your local directory (the OpenBugs submit file could be a good starting point). What changes need to be made to run this Python job?
-
Modify your submit file, then make sure you've included the key lines below:
executable = run_fib.sh transfer_input_files = fib.py, prebuilt_python.tar.gz
-
Submit the job using
condor_submit
. -
Check the
.out
file to see if the job completed.