Skip to content

Commit 88291e0

Browse files
committed
Update INSTALL to 7.8.1.1
1 parent fc8b7bb commit 88291e0

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

INSTALL.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Building pythonOCC 7.8.1 - Complete Guide for Linux and Windows
1+
# Building pythonOCC 7.8.1.1 - Complete Guide for Linux and Windows
22

33
## Table of Contents
44
- [Linux Build Guide](#linux-build-guide)
@@ -35,12 +35,12 @@ Before starting the build process, ensure your system meets these requirements:
3535

3636
## System Requirements (Linux)
3737

38-
pythonOCC 7.8.1 requires the following components:
38+
pythonOCC 7.8.1.1 requires the following components:
3939

4040
| Component | Version | Purpose |
4141
|-----------|---------|---------|
4242
| Python | ≥ 3.9 | Runtime environment |
43-
| OpenCascade | 7.8.1 | Core CAD functionality |
43+
| OpenCascade | 7.8.1.1 | Core CAD functionality |
4444
| SWIG | 4.2.1 | Interface generation |
4545
| CMake | ≥ 3.1 | Build system |
4646

@@ -85,12 +85,12 @@ sudo make install
8585

8686
### 3. Building OpenCascade (Linux)
8787

88-
Download and extract OpenCascade 7.8.1:
88+
Download and extract OpenCascade 7.8.1.1:
8989

9090
```bash
9191
wget https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_8_1.tar.gz
9292
tar -xvzf V7_8_1.tar.gz
93-
cd OCCT-7.8.1
93+
cd OCCT-7.8.1.1
9494
mkdir cmake-build
9595
cd cmake-build
9696
```
@@ -163,7 +163,7 @@ Before starting the build process, ensure your system meets these requirements:
163163
| Git | Latest | [Download](https://git-scm.com/download/win) |
164164
| RapidJSON | Latest | [Download](https://github.com/Tencent/rapidjson.git) |
165165
| SWIG | 4.2.1 | [Download](http://www.swig.org/download.html) |
166-
| OpenCascade | 7.8.1 | [Download](https://dev.opencascade.org/download) |
166+
| OpenCascade | 7.8.1.1 | [Download](https://dev.opencascade.org/download) |
167167

168168
## Build Process (Windows)
169169

@@ -201,18 +201,18 @@ Binaries for dependencies can be downloaded at https://dev.opencascade.org/resou
201201

202202
### 2. Installing OpenCascade (Windows)
203203

204-
1. Download OpenCascade 7.8.1 for Windows
205-
2. Extract to, for example, occt-7.8.1
204+
1. Download OpenCascade 7.8.1.1 for Windows
205+
2. Extract to, for example, occt-7.8.1.1
206206

207207
If the binaries are not available, consider compiling by yourself OCCT on Windows. Refer to the official OpenCascade Technology documentation https://dev.opencascade.org/doc/overview/html/build_upgrade.html
208208

209209
When installing OpenCascade and third-party libraries, you should have a structure similar to the one described at https://dev.opencascade.org/doc/overview/html/index.html#intro_install_windows
210210

211-
C:\OpenCASCADE-7.8.1-vc10-64
211+
C:\OpenCASCADE-7.8.1.1-vc10-64
212212
├── ffmpeg-3.3.4-gpl-64
213213
├── freeimage-3.17.0-vc10-64
214214
├── freetype-2.6.3-vc10-64
215-
├── occt-7.8.1
215+
├── occt-7.8.1.1
216216
├── qt486-vc10-64
217217
├── tclkit-86-64
218218
├── vtk-6.1.0-vc10-64
@@ -236,16 +236,16 @@ cd cmake-build
236236
```batch
237237
cmake -G "Visual Studio 16 2019" -A x64 ^
238238
-DCMAKE_BUILD_TYPE=Release ^
239-
-DOCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\inc ^
240-
-DOCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\win64\vc14\lib ^
241-
-DOCCT_ESSENTIALS_ROOT=C:\OpenCASCADE-7.8.1-vc10-64
239+
-DOCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1.1-vc10-64\occt-7.8.1.1\inc ^
240+
-DOCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1.1-vc10-64\occt-7.8.1.1\win64\vc14\lib ^
241+
-DOCCT_ESSENTIALS_ROOT=C:\OpenCASCADE-7.8.1.1-vc10-64
242242
..
243243
```
244244

245245
If using CMake GUI, make sure to set these two variables before clicking the "Generate" button:
246246
```
247-
OCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\inc
248-
OCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\win64\vc14\lib
247+
OCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1.1-vc10-64\occt-7.8.1.1\inc
248+
OCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1.1-vc10-64\occt-7.8.1.1\win64\vc14\lib
249249
```
250250

251251
4. Build:

0 commit comments

Comments
 (0)