$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install CUDA 10 on MX Linux 64-bit Step By Step

July 13, 2019 | By the+gnu+linux+evangelist.

Installing

  1. 3. Installing Kernel Headers

    Next Install MX Linux’s Kernel Headers.

    Copy
    sudo apt install linux-headers-$(uname -r)

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

  2. 4. Setting Up Repo

    See How Setup CUDA 10 MX Linux Repository

    Here Debian CUDA 10 Repo Setup
    How to Add CUDA 10 Repository for MX Linux.
  3. 5. Installing CUDA

    Finally, Install CUDA 10 Toolkit in MX Linux.

    Copy
    sudo apt install nvidia-cuda-dev nvidia-cuda-toolkit nvidia-driver
  4. 6. Setting Up Path

    Again Setup PATH Env Variable.
    This is necessary to Find the Binaries on System:

    Copy
    echo 'export PATH=/usr/local/CUDA-10.0/bin${PATH:+:${PATH}}' > $HOME/.bashrc

    Possibly Amend the.0 with the Actual Version…
    And finally, Reload Configuration simply with:

    Copy
    bash