日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > linux >内容正文

linux

linux系统无root权限lua库安装,liunx系统中安装lua以及torch

發布時間:2025/3/15 linux 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 linux系统无root权限lua库安装,liunx系统中安装lua以及torch 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一直在用pytorch,最近在做項目的時候,遇到了torch的開源代碼,所以又開始不得不接觸torch以及他所依賴的環境lua。 liunx下lua環境的配置代碼如下: ''' curl -R -O http://www.lua.org/ftp/lua-5.3.5.tar.gz tar zxf lua-5.3.5.tar.gz cd lua-5.3.5 make linux test ''' 如果安裝出現錯誤: lua.c:82:31: fatal error: readline/readline.h: 沒有那個文件或目錄 compilation terminated. : recipe for target 'lua.o' failed make[2]: *** [lua.o] Error 1 make[2]: Leaving directory '/opt/software/lua-5.3.5/src' Makefile:110: recipe for target 'linux' failed make[1]: *** [linux] Error 2 make[1]: Leaving directory '/opt/software/lua-5.3.5/src' Makefile:55: recipe for target 'linux' failed make: *** [linux] Error 2 可以執行: ''' sudo apt-get install libreadline-dev ''' 進行依賴包的添加 ,然后繼續進行 ''' sudo make liunx test ''' 最后進行鏈接的創建: ''' sudo ln -s ~/lua-5.3.5/src/lua /usr/bin/lua ''' 在teminal中輸入lua,即可判斷lua語言是否安裝成功!

安裝torch git clone https://github.com/torch/distro.git ~/torch --recursive cd ~/torch; bash install-deps; ./install.sh

在bash install-deps中可能會出現 python-common找不到

Home -> Torch -> Open install-deps

================================================================================== find the keyword python-software-properties and replace it with software-properties-common, save and exit.

install the software-properties-common with the command

================================================== sudo apt-get install software-properties-common

run the command

========================== cd ~/torch; bash install-deps;

You are done!!

總結

以上是生活随笔為你收集整理的linux系统无root权限lua库安装,liunx系统中安装lua以及torch的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。