Calling Python from bash
Jump to navigation
Jump to search
Internal
Overview
This article summarizes a series of aspects related to invoking Python program from bash.
Running a Python Program with a Bash Wrapper
Check out these links for the meaning of standalone Python program and Python script.
TODO: reconcile with Python Project Layout.
Python Source Code and Tests Maintained within the Project Structure
Only Externally Published Packages
Using the Interpreter from the a Virtual Environment
TODO
If you want to use the interpreter from a specific virtual environment instead of the interpreter found in PATH, explicitly use the path to the binary from the virtual environment directory:
$(dirname $0)/venv/bin/python ...
Inline Python Code
Use bash here-doc:
python3 <<EOF
print('blah')
EOF
Also see: