美文网首页
lua环境搭建

lua环境搭建

作者: randyjia | 来源:发表于2016-05-30 16:19 被阅读260次

    操作系统版本为ubuntu 12.04

    安装lua5.1.5

    • 下载5.1.5
    • ubuntu 12.04安装
      • 首先安装,不然后面会报错
        <pre>
        apt-get install libreadline6-dev
        </pre>
      • 进入目录
        <pre>
        lua-5.1.5
        make linux test
        sudo make install
        </pre>
      • 其它
        • 在14.04上面,上述安装还是会报错
          <pre>
          usr/bin/ld: cannot find -lncurses
          collect2: error: ld returned 1 exit status
          make[2]: *** [lua] Error 1
          make[2]: Leaving directory /tmp/lua-5.1.5/src' make[1]: *** [linux] Error 2 make[1]: Leaving directory/tmp/lua-5.1.5/src'
          make: *** [linux] Error 2
          </pre>
          需要安装
          <pre>
          sudo apt-get install libncurses5-dev
          </pre>
          再次运行即可

    安装luajit2.0.4

    turbo安装

    • 安装turbo之前,需要安装luajit和libssl-dev
    • libssl-dev安装
      <pre>
      sudo apt-get install libssl-dev
      </pre>
    • turbo主页

    <pre>
    git clone https://github.com/kernelsauce/turbo
    vim turbo/turbo/log.lua
    修改categories中的success为fasle,关闭请求成功的打印
    sudo make install
    </pre>

    lualogging安装

    <pre>
    https://github.com/Neopallium/lualogging
    cd lualogging
    sudo make install
    </pre>

    安装cjson

    <pre>
    sudo make install
    </pre>

    可以不安装luarocks

    luarocks安装

    • luarocks主页luarocks
    • 过程参考
    • 实际过程
      • 版本为2.2.2
      <pre>
      tar -xzf luarocks-2.2.2.tar.gz
      cd luarocks-2.2.2
      ./configure
      make build
      sudo make install
      </pre>

    相关文章

      网友评论

          本文标题:lua环境搭建

          本文链接:https://www.haomeiwen.com/subject/toqcdttx.html