I am working in a server, a application created load a conda env that was create by a colleague in python3. However, when the application is run by other user, its run somethings python2 and sometimes python3. No idea what this is happening.
I think, I could solve this, cloning and creating a new env with my user because I am now the unique user that run this application.
I have done this
conda create --name exomedepth_clone --clone /mainfs/wrgl/.conda/envs/exomedepth
However, when activated, the python installed is python2.
Can I build a new env with the same packages but specifying I want python3
EDIT
I have created a new env
conda create --name exomedepth_clone2 --file exomedepth.txt python=3.7
And when activating, I still getting python2
If I try to create a conda environment as yml nothing is created I think this is due to permission issues. However, I can list the conda list -n myenv and save it in a file. But I dont know how to install them now.