0

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
  • 53,208
  • 11
  • 148
  • 196
Michael
  • 208
  • 1
  • 12

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,425
  • 3
  • 28
  • 33