Can I use wandb on SQUID?

You can install wandb with pip command.

pip install wandb
wandb login "XXXX"

 
SQUID can not access to internet on computational nodes, however, we permitted only for "wandb".
Please describe a job script file as the following:

#!/bin/bash
#PBS -q SQUID
#PBS --group=[group name]
#PBS -l elapstim_req=1:00:00
cd $PBS_O_WORKDIR
export http_proxy="http://ibgw1f-ib0:3128"
export https_proxy="https://ibgw1f-ib0:3128"
python test.py

 
Please use requests-2.24. Versions such as 2.26 will not work properly with SQUID.