Skip to content
Merged

Python #1547

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ pip install cdisc-rules-engine

For implementation instructions, see [PYPI.md](PYPI.md).

### Cloning
### Source Code

In the terminal, navigate to the directory you intend to install CORE rules engine in

Expand All @@ -455,11 +455,16 @@ In the terminal, navigate to the directory you intend to install CORE rules engi
git clone https://github.com/cdisc-org/cdisc-rules-engine
```

2. Ensure you have Python 3.12 installed:
You can check your Python version with:
2. **IMPORTANT: Python 3.12 is required**

CORE Rules Engine requires Python 3.12. Other versions are not supported and may cause unexpected errors or incorrect validation results.

Check your Python version:

```
python --version
```

If you don't have Python 3.12, please download and install it from [python.org](https://www.python.org/downloads/) or using your system's package manager.

### Installing dependencies
Expand Down
Loading