If you are using python in one of the shared workstations, you must create and use your own conda environment, to avoid any incompatibility with any of the other users packages.
Create your own conda environment with your desired python version as:
$ conda create -n [environment-name] python=x.x
To list existing environments in your PC:
$ conda info --envs
To activate your environment:
$ conda activate [environment-name]