26 lines
395 B
Markdown
26 lines
395 B
Markdown
# OpenECADv2toSTEP
|
|
|
|
## Prerequisites
|
|
|
|
- Linux
|
|
- Python 3.10
|
|
|
|
## Dependencies
|
|
|
|
Install python package dependencies through pip:
|
|
|
|
```bash
|
|
$ pip install -r requirements.txt
|
|
```
|
|
|
|
Install [pythonocc](https://github.com/tpaviot/pythonocc-core) (OpenCASCADE) by conda:
|
|
|
|
```bash
|
|
$ conda install -c conda-forge pythonocc-core=7.5.1
|
|
```
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
python py2step.py --src examples/ -o outputs/
|
|
``` |