Skip to content

Commit bf5dbb7

Browse files
committed
replaced conda env export -f by touch
we just need the file no the content
1 parent 3c7e49f commit bf5dbb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xmipp/bindings/python/xmipp_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def installEnvironCmd(name: str,requirementsFn: str, versionId: int = None, gpu
340340

341341
commands = []
342342
commands.append('conda env create -f %s || conda env update -f %s' % (requirementsFn, requirementsFn))
343-
commands.append('conda env export -f %s' % target)
343+
commands.append('touch %s' % target)
344344
return ' && '.join(commands), target
345345

346346
def getModel(*modelPath, **kwargs):

0 commit comments

Comments
 (0)