-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes cpu-only environment and also auxilary data condition for cupy
- Loading branch information
Showing
3 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -15,12 +15,13 @@ Install as a Python module | |
=========================== | ||
|
||
If installation above for some reason is not working for you, then the best way to install HTTomo is to create conda environment first and then | ||
`pip install` HTTomo into it. You will need to `git clone` HTTomo repository to your disk first. | ||
`pip install` HTTomo into it. You will need to `git clone` HTTomo repository to your disk first. Use `environment.yml` file to install | ||
the GPU-supported HTTomo. For CPU-only version, please use `environment-cpu.yml` instead. | ||
|
||
.. code-block:: console | ||
$ git clone [email protected]:DiamondLightSource/HTTomo.git # clone the repo | ||
$ conda env create --name httomo --file conda/environment.yml # install dependencies | ||
$ conda env create --name httomo --file conda/environment.yml # install dependencies for GPU version | ||
$ conda activate httomo # activate environment | ||
$ pip install . # Install the module | ||
|
This file contains 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