Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Before install Impulse, check that Python 3.6 is installed with below command:

    Code Block
     $> which python3

    If Pyhton3 is installed you will see the following line:

    Code Block
    $> /usr/bin/python3
  2. If Python3 is not installed, run the following command:

    Code Block
    $> sudo yum install python3
  3. To install Impulse, update ~/.bashrc file with below instruction:

    Code Block
    export PATH=/opt/NanoXplore/impulse-/bin:$PATH

    Check that ~/.bashrc updating has been taken into account with below command:

    Code Block
    $> source ~/.bashrc” 
  4. Check that Impulse is installed with below commands:

    Code Block
    $> which impulse

    The result of this command must be the following

    Code Block
    $> /opt/NanoXplore/impulse-version/bin/impulse 
  5. Check Impulse is working as expected by running the following command:

    Code Block
    $> impulse --version 

The result should display as follows:

...

How to Install NxBase2

  1. Navigate to the NanoXplore tools directory:

    Code Block
    $> cd /opt/NanoXplore 
  2. Create a new folder named NxBase2-2.5.3:

    Code Block
    $> sudo mkdir NxBase2-2.5.3 
  3. Extract the NxBase2 TAR archive to the /opt/NanoXplore folder:

    Code Block
    $> sudo tar xvf NxBase2-2.5.3.tar.bz2 -C ./NxBase2-2.5.3

...