wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.shchmod u+x Miniconda3-latest-Linux-x86_64.sh && ./Miniconda3-latest-Linux-x86_64.shsource .bashrc
conda install -y pytorch torchvision torchaudio cudatoolkit -c pytorchconda install -y pandas scikit-learn matplotlib tqdm seaborn tensorboardpip install wandbconda clean -ainstalling jupyter lab
conda install -c conda-forge jupyterlabserver-configurations:
touch .jupyter/jupyter_server_config.pyvi .jupyter/jupyter_server_config.pythen inside you can add this
c.ServerApp.ip = '*' # bind to any network interface
c.ServerApp.password = u'sha256:bcd259ccf...<your hashed password here>'
c.ServerApp.open_browser = False
c.ServerApp.port = 8888 # or any other ports you'd likethen to get the password we
jupyter server passwordthen
cat .jupyter/jupyter_server_config.jsoncopy the hashed password into the .py file you created above
screen -S Jupyter
then
jupyter lab
ctrl+A
ctrl+D
go here
:8888/lab
First let us see the name of the storage:
lsblk
We then make our file system
sudo mkfs -t xfs /dev/[drive name]
We create a dir to mount the drive in
mkdir ~/data
We mount the drive
sudo mount /dev/[drive name] ~/data
We change the permission to be able to access the drive
cd ~/data
sudo chmod go+rw .
cd ..