Search code examples
lualuajittorchzerobrane

How to set the environment variable of zerobrane studio


I install all torch package into my local file torch-distro(Followed by this tutorial). I want to use Zerobrane to debug my code. Zerobrane can't find my local path of torch. How Can I set my local path to the Zerobrane environment variable.
I tried to add path.lua = "${prefix}/torch-distro/install/bin/luajit" into the user.lua. But it can't work


Solution

  • Following method works on linux platform:

    1. Configuring the luajit interpreter by adding following code into the user.lua

      path.lua = "your_path/luajit"

    2. Configuring the envrioment variable by adding following code into the /opt/zbsstudio/lualibs/mobdebug/mobdebug.lua

      package.path = package.path .. ';my_path/?/init.lua' package.cpath = package.cpath .. ';my_path/?.so'