fix review findings.

pull/2289/head
Kim Kulling 2018-12-30 11:41:58 +01:00
parent 281c191367
commit 7c23a6c5ca
1 changed files with 5 additions and 8 deletions

View File

@ -76,14 +76,12 @@ INSTALL
Install `pyassimp` by running: Install `pyassimp` by running:
``` ```console
$ python setup.py install $ python setup.py install
``` ```
PyAssimp requires a assimp dynamic library (`DLL` on windows, PyAssimp requires a assimp dynamic library (`DLL` on windows,
`.so` on linux, `.dynlib` on macOS) in order to work. The default search directories `.so` on linux, `.dynlib` on macOS) in order to work. The default search directories are:
are:
- the current directory - the current directory
- on linux additionally: `/usr/lib`, `/usr/local/lib`, - on linux additionally: `/usr/lib`, `/usr/local/lib`,
`/usr/lib/x86_64-linux-gnu` `/usr/lib/x86_64-linux-gnu`
@ -91,4 +89,3 @@ are:
To build that library, refer to the Assimp master `INSTALL` To build that library, refer to the Assimp master `INSTALL`
instructions. To look in more places, edit `./pyassimp/helper.py`. instructions. To look in more places, edit `./pyassimp/helper.py`.
There's an `additional_dirs` list waiting for your entries. There's an `additional_dirs` list waiting for your entries.