Skip to content

Commit cac0d4c

Browse files
committed
Remove unnecessary ccpi conda dependency
1 parent d534eda commit cac0d4c

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/workflows/run_tests_iris.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
environment-name: httomo_backends
3131
create-args: >-
3232
cupy==12.3.0
33-
ccpi::ccpi-regulariser
3433
post-cleanup: 'all'
3534
init-shell: bash
3635

README.rst

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,23 @@ Purpose of HTTomo-backends
1414
Installation
1515
============
1616

17-
HTTomo-backends is available on PyPI, but currently can only be installed into a conda
18-
environment (due to a dependency being available only through conda).
17+
HTTomo-backends is available on PyPI, so it can be installed into either a virtual environment
18+
or a conda environment.
19+
20+
Virtual environment
21+
~~~~~~~~~~~~~~~~~~~
22+
.. code-block:: console
23+
24+
$ python -m venv httomo-backends
25+
$ source httomo-backends/bin/activate
26+
$ pip install httomo-backends
27+
28+
Conda environment
29+
~~~~~~~~~~~~~~~~~
1930

2031
.. code-block:: console
2132
2233
$ conda create --name httomo-backends
2334
$ conda activate httomo-backends
24-
$ conda install -c ccpi -c conda-forge ccpi-regulariser cupy==12.3.0
35+
$ conda install -c conda-forge cupy==12.3.0
2536
$ pip install httomo-backends

0 commit comments

Comments
 (0)