How to Install NoMachine and connect remotely to server

  1. Download nomachine.
  2. Install nomachine(Server and your local machine both)
          - On windows
                - Run exe
          - On Ubuntu
                - sudo dpkg -i nomachine_XXXXX.deb ( your deb package name)
  3. Configure nomachine to connect to server
          - start nomachine from application
          - Click on new
          - Click continue
          - Enter host name you want to connect and click continue.
          - Select authentication type ( I used password).
          - Select connection type.
          - Choose Name.
          - Click to added machine icon.
          - Enter username and password of server machine.
  4. Create virtual env.
          - conda create -n worldmodel python=3.5.4 numpy=1.13.3
          - logout user(sometime required)
          - source activate worldmodel
  5. install tensorflow.
          - pip install –upgrade pip
          - pip install –ignore-installed –upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.12.0-cp35-cp35m-linux_x86_64.whl .
          - possible error
                - mkl-random 1.0.1 requires cython, which is not installed.
          - Install cython
                - pip install –upgrade pip
                - pip install cython
  6. Verify Tensorflow installation.
          - python
          - import tensorflow
          - If installtion fail import will throw some error msg.

Related