How to upgrade a python library in a supercomputer

77 Views Asked by At

I am using Tinaroo (University of Queensland) super computer

When I call to run my code using

qsub 70my_01_140239.sh

I get this error

autosklearn.util.dependencies.IncorrectPackageVersionError: found 'dask' version 2021.11.2 but requires dask version >=2021.12

cleary i need to upgrade dask library

but I don't have access to upgrade it

Here is the actual code for qsub 70my_01_140239.sh

#!/bin/bash
#
#PBS -A qris-jcu
#
#PBS -l select=1:ncpus=24:mem=120GB
#PBS -l walltime=06:00:00
#PBS -N 70my_01_140239


shopt -s expand_aliases
source /etc/profile.d/modules.sh
cd ${PBS_O_WORKDIR}
module load python
module load anaconda
python 70myb.py 8000 3 "E&V" 2 1 15 10000 120 24

I tried adding conda install dask in 70my_01_140239.sh but it does not work as i have no permission to upgrade the library.

does anyone know How to upgrade a python library in a supercomputer

0

There are 0 best solutions below