网站空间公司,公司网站制作的教程,服务器网站崩溃,投资管理有限公司注册要求一直在用pytorch#xff0c;最近在做项目的时候#xff0c;遇到了torch的开源代码#xff0c;所以又开始不得不接触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…一直在用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-commonrun the command cd ~/torch; bash install-deps;You are done!!