Closed kimbring2 closed 7 years ago
There is no special way to do this currently (unlike floyd_requirements.txt for Python). You can always create a bash script with the sequence of steps, and then floyd run
that.
For example, create a bash script called run.sh
with the following content
luarocks install torch
luarocks install xyz
# Add you main run command here
th train.lua
Now you can do floyd run "bash run.sh"
Lets use the forum (https://forum.floydhub.com/) for questions. Github issues is for actual issues with the docs :) Thanks!
How do I install a dependencies for lua deep learning code?