Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed install instructions #150

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
13 changes: 5 additions & 8 deletions python/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# openEMS python interface

## Install
* Simple version:
```python
python setup.py install
```
If openEMS was installed into `~/opt/openEMS`, then install this package with:

* Extended options, e.g. for custom install path at */opt/openEMS*:
```python
python setup.py build_ext -I/opt/openEMS/include -L/opt/openEMS/lib -R/opt/openEMS/lib"
```bash
python setup.py build_ext -I ~/opt/openEMS/include -L ~/opt/openEMS/lib -R ~/opt/openEMS/lib
python setup.py install
```
**Note:** The install command may require root on Linux, or add --user to install to ~/.local

Otherwise, replace `~/opt/openEMS` with the path to the place where it was installed.