Skip to content

Commit

Permalink
Add install method to README.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackz314 committed May 11, 2021
1 parent 66d242a commit 5553e59
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Install from [PyPI](https://pypi.org/project/eeglabio):
pip install eeglabio
```

Or install the latest version of the code (unstable) from GitHub directly:

```
pip install https://github.com/jackz314/eeglabio/archive/main.zip
```

### Dependencies

eeglabio requires Python >= 3.6 and the following packages:
Expand Down
2 changes: 1 addition & 1 deletion eeglabio/epochs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


def export_set(fname, data, sfreq, events, tmin, tmax, ch_names, event_id=None,
ch_locs=None, ref_channels='common'):
ch_locs=None, ref_channels="common"):
"""Export epoch data to EEGLAB's .set format.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion eeglabio/raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


def export_set(fname, data, sfreq, ch_names, ch_locs=None, annotations=None,
ref_channels='common'):
ref_channels="common"):
"""Export continuous raw data to EEGLAB's .set format.
Parameters
Expand Down

0 comments on commit 5553e59

Please sign in to comment.