From 320dc0aeeddf69e436cdd7559044f326d714584e Mon Sep 17 00:00:00 2001 From: "A. R. Shajii" Date: Tue, 13 Dec 2022 17:22:30 -0500 Subject: [PATCH] Update decorator docs --- docs/interop/decorator.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/interop/decorator.md b/docs/interop/decorator.md index 1494d9a8..3b7656ab 100644 --- a/docs/interop/decorator.md +++ b/docs/interop/decorator.md @@ -1,13 +1,15 @@ Codon includes a Python package called `codon` that allows functions or methods within Python codebases to be compiled and executed by Codon's JIT. The `codon` library can be installed -via `pip install`. For example: +with `pip`: ```bash -python3 -m pip install codon-0.13.0-cp39-cp39-macosx_12_0_arm64.whl +pip install codon-jit ``` -where the `*.whl` file is included in the Codon distribution. +This library will attempt to use an installed version of Codon. +If Codon is installed at a non-standard path, set the `CODON_DIR` +environment variable to the installation path. # Using `@codon.jit`