Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Merge modif from master
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Jan 4, 2021
2 parents bb765e1 + 0493ec8 commit ec4bcea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
- NEW: The Accelize DRM Systemd service now reset the FPGA on start and stop.
- NEW: The Python library now provides a Xilinx XRT Python FPGA driver.
- NEW: The Python library drivers now provides a "reset_fpga" method.
- FIX: Build issue with setuptools v41.1.0.
- FIX: Build issue with setuptools v4.1.1.0.
- FIX: DEB/RPM packages build is now triggered on the build tools instead of the package manager.
- DOC: Updated to match new DRM HDK file organization.
- DOC: Updated simulation chapter and added SDAccel/Vitis paragraph.
Expand Down
18 changes: 9 additions & 9 deletions doc/drm_library_installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Python library requirements:
Run following commands to install all requirements:

.. code-block:: bash
:caption: On Debian >= 10, Ubuntu >= 18.10
:caption: On Debian >= 10, Ubuntu >= 20.04
# Minimal requirements
sudo apt update
Expand All @@ -263,7 +263,7 @@ Run following commands to install all requirements:
sudo apt install -y python3-dev python3-wheel python3-setuptools cython3
.. code-block:: bash
:caption: On Debian < 10, Ubuntu < 18.10
:caption: On Debian < 10, Ubuntu < 20.04
# Minimal requirements
sudo apt update
Expand All @@ -272,8 +272,8 @@ Run following commands to install all requirements:
pip3 install --user -U cmake
# Python library requirements
sudo apt install -y python3-dev
pip3 install --user -U setuptools wheel cython
sudo apt install -y python3-dev python3-wheel python3-setuptools
pip3 install --user -U cython
.. code-block:: bash
:caption: On RHEL 8, CentOS 8
Expand All @@ -287,8 +287,8 @@ Run following commands to install all requirements:
pip3 install --user -U cmake
# Python library requirements
sudo dnf install -y python3-devel
pip3 install --user -U setuptools wheel cython
sudo dnf config-manager --set-enabled PowerTools
sudo dnf install -y python3-devel python3-setuptools python3-Cython python3-wheel
.. code-block:: bash
:caption: On RHEL 7, CentOS 7
Expand All @@ -302,8 +302,8 @@ Run following commands to install all requirements:
pip3 install --user -U cmake
# Python library requirements
sudo yum install -y python3-devel
pip3 install --user -U setuptools wheel cython
sudo yum install -y python3-devel python3-setuptools python3-wheel
pip3 install --user -U cython
.. code-block:: bash
:caption: On Fedora
Expand Down Expand Up @@ -372,7 +372,7 @@ Once dependencies are installed, simply run the following section:
cmake -DPYTHON3=ON -DPKG=ON ..
make -j
make package
sudo make package
Packages will be generated in the `drm/build/packages` directory.

Expand Down

0 comments on commit ec4bcea

Please sign in to comment.