-
Notifications
You must be signed in to change notification settings - Fork 17
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
Update installation instructions #154
Changes from all commits
dcfaf1b
e9ff99e
ad6bb4d
4ba2057
f8d072e
bbca395
289dd38
462af6d
21e0f41
3c4e867
06f7b2c
393c5a1
d4be3b7
ec83acc
4103091
0dde201
b5a83bb
03c9a0c
36beca9
4711b17
b4f0cd3
e278182
3805e4e
4bc20c4
34ff9ac
c9ed61a
cbf811b
6a6b725
1ec4614
528c043
93694fb
75b666d
ce4da27
617e993
d2301b7
7d37a01
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,56 +54,18 @@ The instructions above install a CPU-only version of SCICO. To install a version | |
|
||
:: | ||
|
||
pip install --upgrade "jaxlib==0.1.70+cuda110" -f https://storage.googleapis.com/jax-releases/jax_releases.html | ||
pip install --upgrade "jaxlib==0.1.75+cuda110" -f https://storage.googleapis.com/jax-releases/jax_releases.html | ||
|
||
|
||
|
||
Additional Dependencies | ||
----------------------- | ||
|
||
We use the `ASTRA Toolbox <https://www.astra-toolbox.com/>`_ for tomographic projectors. We currently require the development version of ASTRA, as suggested by the package maintainers. | ||
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. The first sentence here seems to have been lost (rather than moved) in the edits. 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. I removed it since it seemed that we are explaining why we need astra but not why we need the other example_requirements. Shall I add a few sentences to explain how we are using each of the example_requirements or just add back this sentence on astra? 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. Fair point. I'm OK with leaving it as-is. |
||
|
||
The development version of ASTRA can be installed using conda: | ||
|
||
:: | ||
|
||
conda install -c astra-toolbox/label/dev astra-toolbox | ||
|
||
Alternatively, it can be `built from source <https://www.astra-toolbox.com/docs/install.html#for-python>`_. | ||
|
||
We also support the `Super-Voxel Model-Based Iterative Reconstruction <https://svmbir.readthedocs.io/en/latest/>`_ package as an alternative tomographic projector. Since this package can be installed via ``pip``, it is | ||
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. If we mention |
||
included in the list of package dependencies (``requirements.txt``), and need | ||
not be separately installed. | ||
For instructions on installing dependencies related to the examples please see :ref:`example_notebooks`. | ||
|
||
|
||
For Developers | ||
-------------- | ||
|
||
For installing a version of SCICO suitable for development, | ||
see the instructions in :ref:`scico_dev_contributing`. | ||
|
||
|
||
Building Documentation | ||
---------------------- | ||
|
||
The documentation can be built from the respository root directory by doing | ||
|
||
:: | ||
|
||
python setup.py build_sphinx | ||
|
||
Alternatively: | ||
|
||
1. Navigate to the docs directory ``docs/`` | ||
|
||
2. Install dependencies | ||
|
||
:: | ||
|
||
pip install -r docs_requirements.txt | ||
|
||
3. Build documentation | ||
|
||
:: | ||
|
||
make html |
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.
This seems easy to miss to me, but I think it's fine for now given that we will likely look at all of this again for #155 .