-
Notifications
You must be signed in to change notification settings - Fork 141
Document Windows support; fix Conda instructions #558
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,27 +2,47 @@ | |
| Installation | ||
| ============ | ||
|
|
||
| Binaries | ||
| ++++++++ | ||
|
|
||
|
|
||
| PyPI | ||
| ==== | ||
|
|
||
| You can install BrainIAK wheels from PyPI on Linux, macOS, and Windows, e.g. using pip:: | ||
|
|
||
| python3 -m pip install brainiak | ||
|
|
||
|
|
||
| MPI | ||
| --- | ||
|
|
||
| On Linux and macOS, there are no MPI4PY binaries in PyPI, so you need to install MPI separately, e.g., following the BrainIAK `source installation instructions <#requirements>`_. | ||
|
|
||
| On Windows, MPI4PY binaries will be installed as BrainIAK dependencies. You can also install an MPI implementation available on PyPI such as Intel MPI:: | ||
|
|
||
| python3 -m pip install impi-rt | ||
|
|
||
|
|
||
| Conda | ||
| +++++ | ||
| ===== | ||
|
|
||
| Make sure you have the ``conda-forge`` channel active, because some of our | ||
| dependencies are not available in the default channels. | ||
|
|
||
| Use our ``brainiak`` channel to install:: | ||
|
|
||
| conda install -c brainiak -c defaults -c conda-forge brainiak | ||
| conda install -c brainiak -c conda-forge brainiak | ||
|
|
||
| Note that `~brainiak.funcalign.sssrm.SSSRM` currently uses Theano, which | ||
| requires the Xcode Command Line Tools on `MacOS`_. | ||
|
|
||
| Source | ||
| ++++++ | ||
|
|
||
| Requirements | ||
| ============ | ||
|
|
||
| We support Linux and MacOS with Python version 3.5 or higher. Most of the | ||
| dependencies will be installed automatically. However, a few need to be | ||
| We support Linux, MacOS, and Windows with Python version 3.9 or higher. Most of | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't support 3.13 at the moment, tensorflow is the problem I think. |
||
| the dependencies will be installed automatically. However, a few need to be | ||
| installed manually. | ||
|
|
||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can get wheels for mpi4py on linux and macos (see here). You need to add the extra index argument though. Some on linux, a one-line install looks like this:
pip install brainiak[matnormal]==0.12.a5 impi-rt --extra-index-url https://pypi.anaconda.org/mpi4py/simpleI just tested this in WSL and it worked for me, all tests passed. For windows, its even simpler since there are mpi4py wheels already on PyPI. Just this works:
pip install brainiak[matnormal]==0.12.a5 impi-rtFor MacOS, you can get the wheels similar to linux but I believe you still need to brew install or macports install opemmpi or mpich.