Docker image
You can use the PredictMD Docker image for easy installation of PredictMD and all of its dependencies. Download and start the container by running the following line:
docker run --name predictmd -it dilumaluthge/predictmd /bin/bashOnce you are inside the container, you can start Julia by running the following line:
juliaIn Julia, run the following line to load PredictMD:
import PredictMDFullYou can run the test suite by running the following four lines in Julia:
import Pkg
ENV["PREDICTMD_TEST_GROUP"] = "all"
Pkg.test("PredictMDExtra")
Pkg.test("PredictMDFull")
Pkg.test("PredictMD")After you have exited the container, you can return to it by running the following line:
docker start -ai predictmdTo delete your container, run the following line:
docker container rm -f predictmdTo also delete the downloaded image, run the following line:
docker image rm -f dilumaluthge/predictmd