diff --git a/just/custom.just b/just/custom.just index 2e5eb1626e6..9863827852c 100644 --- a/just/custom.just +++ b/just/custom.just @@ -174,6 +174,21 @@ podmansh-switch IMAGE: systemctl --user start podmansh.service echo "Image now switched to {{IMAGE}}" +# Run pytorch +pytorch: + echo 'Follow the prompts and check the tutorial: https://docs.anaconda.com/free/anaconda/jupyter-notebooks/' + podman pull docker.io/continuumio/miniconda3 + podman run -i -t -p 8888:8888 docker.io/continuumio/miniconda3 /bin/bash -c "/opt/conda/bin/conda install jupyter -y --quiet && mkdir \ +/opt/notebooks && /opt/conda/bin/jupyter notebook \ +--notebook-dir=/opt/notebooks --ip='*' --port=8888 \ +--no-browser --allow-root" + +# Run Tensorflow +tensorflow: + echo 'Follow the prompts and check the tutorial: https://www.tensorflow.org/tutorials/quickstart/beginner' + podman pull docker.io/tensorflow/tensorflow:latest + podman run -it -p 8888:8888 docker.io/tensorflow/tensorflow:latest-jupyter # Start Jupyter server + # Install a better on-screen-keyboard and gesture improvements touch: pip install --upgrade gnome-extensions-cli