...
Info |
---|
If a 64-bit Linux machine is not available, you can install VirtualBox with CentOS 7 or CentOS 8 to use Impulse |
Note |
---|
WSL on Windows is not supported yet. |
Software
Running Impulse requires Python 3.6 installed on a Linux 64-bit machine.
Note |
---|
Other Python versions are not supported yet. |
Download NanoXplore Tools
Follow the steps below to download and unpack NanoXplore tools
Visit Support NanoXplore-download and sign-in or register to download:
NXLMD => NXLMD-2.12-linux.tar.gz
Impulse => nxdesignsuite-version-.tar.gz
NxBase2 => NxBase2-2.5.3.tar.bz2
Save Impulse tools to your ~/Downloads folder or a location of your choice
Create a New Folder named NanoXplore in the /opt directory
Unpack your downloaded NanoXplore tool directly to /opt/NanoXplore
Repeat this process for each NanoXplore tool
...
To download and install the NanoXplore License Manager Daemon (NXLMD), please refer to the instructions in the License Daemon guide.
Installation
Below the main steps to setup and install each NanoXplore tool:
...
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
If Python3 is not installed, run the following command:
Code Block $> sudo yum install python3
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”
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
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
Navigate to the NanoXplore tools directory:
Code Block $> cd /opt/NanoXplore
Create a new folder named NxBase2-2.5.3:
Code Block $> sudo mkdir NxBase2-2.5.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
...