Clarify OpenRAM installation

This commit is contained in:
mole99 2024-01-18 23:24:22 +01:00
parent 0861ea5632
commit 84020f13c6
3 changed files with 9 additions and 1 deletions

View File

@ -88,6 +88,8 @@ OpenRAM installation, you can set two environment variables:
If you have the library installed and `OPENRAM_HOME` set, the library will use
the installation on the `OPENRAM_HOME` path.
> See [Python library](./python_library.md#go-back) for details.
If you don't have the library, you should also add `OPENRAM_HOME` to your
`PYTHONPATH`. This is not needed if you have the library.

View File

@ -42,7 +42,13 @@ unit test framework:
* `23-25_*_test.py` checks lib, lef, and verilog outputs using diff.
* `30_openram_test.py` checks command-line interface and whether output files are created.
## Setup
Before running any unit tests, make sure to install OpenRAM.
> See [Python library](./python_library.md#go-back) for details.
If you have the library already installed and `OPENRAM_HOME` set, the library will use the installation on the `OPENRAM_HOME` path.
## Running Unit Tests
Regression testing performs a number of tests for all modules in OpenRAM. From

View File

@ -1,5 +1,5 @@
#!/bin/bash
CONDA_INSTALLER_URL="https://repo.anaconda.com/miniconda/Miniconda3-py38_22.11.1-1-Linux-x86_64.sh"
CONDA_INSTALLER_URL="https://repo.anaconda.com/miniconda/Miniconda3-py38_23.11.0-2-Linux-x86_64.sh"
CONDA_INSTALLER_FILE="miniconda_installer_py38.sh"
CONDA_HOME="${CONDA_HOME:-miniconda}"