Skip to content

Python utilities and helper functions for meeg-cfin

Notifications You must be signed in to change notification settings

drqm/meeg-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

meeg-python

Various helper utilities for meeg-cfin-related scripts and notebooks.

Usage

After Installation (see below) you can, e.g.,

from meeg import wavhelpers

Installation

The one-off way

You can add the following lines to the beginning of your script/notebook to make the module meeg accessible in that script/notebook:

import sys
sys.path.insert(0, '/path/to/meeg-python')

The permanent way(s)

Install a fixed version

To permanently install a version into your personal python path, execute this in a terminal:

cd /path/to/meeg-python
python setup.py install --user

Install a development version

Note that the above needs to be executed every time you download a new version of the code. Since the code may change a lot, you may want to do this instead:

cd /path/to/meeg-python
python setup.py develop --user

This way, if you update (e.g., by pulling changes from github) the meeg-python repository, the changes will be available to all of your scripts.

About

Python utilities and helper functions for meeg-cfin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%