Skip to content
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

Remove outdated Docker description from Installation docs #6487

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions doc/development/guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,55 +78,3 @@ pre-commit quality checks. Those can be installed easily via ``pip``:
.. code-block:: bash

pip install -r requirements-dev.txt

Docker
------

Build a PennyLane Docker image
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

**Docker** support exists for building using **CPU** and **GPU** (Nvidia CUDA 11.1+) images.

.. note::

Docker builds using "make" will work on Linux and MacOS only. For MS Windows
you can use `WSL <https://docs.microsoft.com/en-us/windows/wsl/install-win10>`__.
They are currently not supported on the Apple M1 chip (ARM64).


Build a basic PennyLane image
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- To build a basic PennyLane image without any additional interfaces (Torch,
TensorFlow, or Jax) or **plugins** (qiskit, amazon-braket, cirq, forest), run
the following:

.. code-block:: bash

make -f docker/Makefile build-base

Build a PennyLane image with a specific interface
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- To build a PennyLane image using a specific **interface** (Torch, TensorFlow or Jax), run the following:

.. code-block:: bash

make -f docker/Makefile build-interface interface-name=tensorflow

- To build a PennyLane image using a specific interface (Torch, TensorFlow or
Jax) with GPU support, run the following:

.. code-block:: bash

make -f docker/Makefile build-interface-gpu interface-name=tensorflow

Build a PennyLane image with a plugin
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- To build a PennyLane image using a specific plugin (qiskit, amazon-braket,
cirq, forest, etc), run the following:

.. code-block:: bash

make -f docker/Makefile build-plugin plugin-name=qiskit
Loading