1

My Conda command is too long, is there a way to break it to a new line?

conda create --name myenv python, package1, package2, package3, package4, package5, package6, etc

PS: yes, I know that I can use YAML file to install all of it but what about the Command Prompt?

merv
  • 67,214
  • 13
  • 180
  • 245
Michael
  • 340
  • 3
  • 13

1 Answers1

0

Did you already try using a backslash?

Something like:

conda create --name myenv python, package1, package2, package3, \
package4, package5, package6
Jan Köhler
  • 5,817
  • 5
  • 26
  • 35