diff --git a/README.md b/README.md index f1b44d8..e970c50 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,12 @@ Some useful links: `pytket-cutensornet` is available for Python 3.10, 3.11 and 3.12 on Linux. In order to use it, you need access to a Linux machine (or WSL) with an NVIDIA GPU of Compute Capability +7.0 (check it [here](https://developer.nvidia.com/cuda-gpus)). -You will need to install the `cuda-toolkit` before `pytket-cutensornet`; for instance, -in Ubuntu 24.04: +You will need to install the `cuda-toolkit` and `cuquantum-python` before `pytket-cutensornet`; +for instance, in Ubuntu 24.04: ```shell sudo apt install cuda-toolkit +pip install cuquantum-python pip install pytket-cutensornet ``` diff --git a/docs/changelog.rst b/docs/changelog.rst index ced8bd7..caf37b8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,7 +8,6 @@ Changelog * Updated pytket version requirement to 1.34. * Now supporting ``ClExpr`` operations (the new version of tket's ``ClassicalExpBox``). -* Included cuquantum-python in the dependencies for PyPI. 0.10.0 (October 2024) --------------------- diff --git a/setup.py b/setup.py index 8234a2a..3cc88b8 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,6 @@ install_requires=[ "pytket >= 1.34.0", "networkx >= 2.8.8", - "cuquantum-python>=24.11.0", ], classifiers=[ "Environment :: Console",