diff --git a/src/xmipp/bindings/python/envs_DLTK/xmipp_MicCleaner.yml b/src/xmipp/bindings/python/envs_DLTK/xmipp_MicCleaner.yml index 7a9e78cdb..181d3adac 100644 --- a/src/xmipp/bindings/python/envs_DLTK/xmipp_MicCleaner.yml +++ b/src/xmipp/bindings/python/envs_DLTK/xmipp_MicCleaner.yml @@ -1,15 +1,15 @@ #Protocols ussing the enviroment: protocol_deepMicrographScreen -# requires other channels apart from conda-forge to install tensorflow-gpu 1.12 name: xmipp_MicCleaner channels: - conda-forge - - rsanchez1369 dependencies: - - python=3.6 - - micrograph-cleaner-em=0.35 + - python=3.9 - libstdcxx-ng # To be compatible with scipion env + - cudatoolkit=11.8 + - cudnn=8.9.* - pip - pip: - - absl-py<0.12 + - micrograph-cleaner-em==1.0.2 + diff --git a/src/xmipp/bindings/python/xmipp_base.py b/src/xmipp/bindings/python/xmipp_base.py index 5b19a202f..ce9cd8493 100644 --- a/src/xmipp/bindings/python/xmipp_base.py +++ b/src/xmipp/bindings/python/xmipp_base.py @@ -340,7 +340,7 @@ def installEnvironCmd(name: str,requirementsFn: str, versionId: int = None, gpu commands = [] commands.append('conda env create -f %s || conda env update -f %s' % (requirementsFn, requirementsFn)) - commands.append('conda env export -f %s' % target) + commands.append('touch %s' % target) return ' && '.join(commands), target def getModel(*modelPath, **kwargs):