Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/xmipp/bindings/python/envs_DLTK/xmipp_MicCleaner.yml
Original file line number Diff line number Diff line change
@@ -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



2 changes: 1 addition & 1 deletion src/xmipp/bindings/python/xmipp_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down