pycortex


Namepycortex JSON
Version 1.2.10 PyPI version JSON
download
home_pagehttp://gallantlab.github.io/pycortex
SummaryPython Cortical mapping software for fMRI data
upload_time2024-09-01 19:02:33
maintainerNone
docs_urlNone
authorJames Gao
requires_pythonNone
license2-clause BSD license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pycortex
========
[![Build Status](https://github.com/gallantlab/pycortex/actions/workflows/run_tests.yml/badge.svg)](https://github.com/gallantlab/pycortex/actions/workflows/run_tests.yml)
[![Python version](https://img.shields.io/badge/python-3.6%2B-blue)](https://www.python.org/downloads/release/python)
[![License](https://img.shields.io/badge/License-BSD%202--Clause-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)


[![quickflat demo](https://raw.github.com/gallantlab/pycortex/main/docs/wn_med.png)](https://gallantlab.github.io/pycortex)

Pycortex is a software library that allows you to visualize fMRI or other volumetric neuroimaging data on cortical surfaces.

Installation
------------

> [!NOTE]
> Pycortex cannot be currently installed in Windows, only Linux and macOS are supported.

To install the stable release version of pycortex, do the following:

```bash
# First, install some required dependencies (if not already installed)
pip install -U setuptools wheel numpy cython
# Install the latest release of pycortex from pip
pip install -U pycortex
```

If you wish to install the development version of pycortex, you can install it directly from Github.

To do so, replace the second install line above with the following:

```bash
# Install development version of pycortex from github
pip install -U git+https://github.com/gallantlab/pycortex.git  --no-build-isolation
```

Documentation
-------------
Pycortex documentation is available at [https://gallantlab.github.io/pycortex](https://gallantlab.github.io/pycortex).

You can find many examples of pycortex features in the [pycortex example gallery](https://gallantlab.github.io/pycortex/auto_examples/index.html).

To build the documentation locally:
```bash
# Install required dependencies for the documentation
pip install sphinx_gallery numpydoc
# Move into the docs folder (assuming already in pycortex directory)
cd docs
# Build a local version of the documentation site
make html
```

After you run the above, you can open `docs/_build/html/index.html` in a web browser to view the locally built documentation.

Demo
----
Pycortex is best used with [IPython]().

If you do not already have IPython, you can install it by running:
```bash
pip install ipython
```

To run the pycortex demo, using IPython, run:
```ipython
$ ipython
In [1]: import cortex
In [2]: cortex.webshow(cortex.Volume.random("S1", "fullhead"))
```

Citation
--------
If you use pycortex in published work, please cite the [pycortex paper](http://dx.doi.org/10.3389/fninf.2015.00023):

_Gao JS, Huth AG, Lescroart MD and Gallant JL (2015) Pycortex: an interactive surface visualizer for fMRI. Front. Neuroinform. 9:23. doi: 10.3389/fninf.2015.00023_

            

Raw data

            {
    "_id": null,
    "home_page": "http://gallantlab.github.io/pycortex",
    "name": "pycortex",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "James Gao",
    "author_email": "james@jamesgao.com",
    "download_url": "https://files.pythonhosted.org/packages/86/f6/44d2a1cb88798057b440a9ed9560e0c95520b361fd9d2079e7efd509829c/pycortex-1.2.10.tar.gz",
    "platform": null,
    "description": "pycortex\n========\n[![Build Status](https://github.com/gallantlab/pycortex/actions/workflows/run_tests.yml/badge.svg)](https://github.com/gallantlab/pycortex/actions/workflows/run_tests.yml)\n[![Python version](https://img.shields.io/badge/python-3.6%2B-blue)](https://www.python.org/downloads/release/python)\n[![License](https://img.shields.io/badge/License-BSD%202--Clause-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)\n\n\n[![quickflat demo](https://raw.github.com/gallantlab/pycortex/main/docs/wn_med.png)](https://gallantlab.github.io/pycortex)\n\nPycortex is a software library that allows you to visualize fMRI or other volumetric neuroimaging data on cortical surfaces.\n\nInstallation\n------------\n\n> [!NOTE]\n> Pycortex cannot be currently installed in Windows, only Linux and macOS are supported.\n\nTo install the stable release version of pycortex, do the following:\n\n```bash\n# First, install some required dependencies (if not already installed)\npip install -U setuptools wheel numpy cython\n# Install the latest release of pycortex from pip\npip install -U pycortex\n```\n\nIf you wish to install the development version of pycortex, you can install it directly from Github.\n\nTo do so, replace the second install line above with the following:\n\n```bash\n# Install development version of pycortex from github\npip install -U git+https://github.com/gallantlab/pycortex.git  --no-build-isolation\n```\n\nDocumentation\n-------------\nPycortex documentation is available at [https://gallantlab.github.io/pycortex](https://gallantlab.github.io/pycortex).\n\nYou can find many examples of pycortex features in the [pycortex example gallery](https://gallantlab.github.io/pycortex/auto_examples/index.html).\n\nTo build the documentation locally:\n```bash\n# Install required dependencies for the documentation\npip install sphinx_gallery numpydoc\n# Move into the docs folder (assuming already in pycortex directory)\ncd docs\n# Build a local version of the documentation site\nmake html\n```\n\nAfter you run the above, you can open `docs/_build/html/index.html` in a web browser to view the locally built documentation.\n\nDemo\n----\nPycortex is best used with [IPython]().\n\nIf you do not already have IPython, you can install it by running:\n```bash\npip install ipython\n```\n\nTo run the pycortex demo, using IPython, run:\n```ipython\n$ ipython\nIn [1]: import cortex\nIn [2]: cortex.webshow(cortex.Volume.random(\"S1\", \"fullhead\"))\n```\n\nCitation\n--------\nIf you use pycortex in published work, please cite the [pycortex paper](http://dx.doi.org/10.3389/fninf.2015.00023):\n\n_Gao JS, Huth AG, Lescroart MD and Gallant JL (2015) Pycortex: an interactive surface visualizer for fMRI. Front. Neuroinform. 9:23. doi: 10.3389/fninf.2015.00023_\n",
    "bugtrack_url": null,
    "license": "2-clause BSD license",
    "summary": "Python Cortical mapping software for fMRI data",
    "version": "1.2.10",
    "project_urls": {
        "Download": "http://gallantlab.github.io/pycortex",
        "Homepage": "http://gallantlab.github.io/pycortex"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86f644d2a1cb88798057b440a9ed9560e0c95520b361fd9d2079e7efd509829c",
                "md5": "f94ebc68ac5d44f1eb3fa1c2d8f1ac31",
                "sha256": "9493b3bbbe034c94131147b2ded5e6b6af904afcc203c2eb4c60380d00d6e79a"
            },
            "downloads": -1,
            "filename": "pycortex-1.2.10.tar.gz",
            "has_sig": false,
            "md5_digest": "f94ebc68ac5d44f1eb3fa1c2d8f1ac31",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 37207588,
            "upload_time": "2024-09-01T19:02:33",
            "upload_time_iso_8601": "2024-09-01T19:02:33.304510Z",
            "url": "https://files.pythonhosted.org/packages/86/f6/44d2a1cb88798057b440a9ed9560e0c95520b361fd9d2079e7efd509829c/pycortex-1.2.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-01 19:02:33",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pycortex"
}
        
Elapsed time: 0.35854s