Use Unix-based commands with Anaconda in Windows Operating System

后端 未结 2 814
时光说笑
时光说笑 2020-12-29 11:19

I used to use several Unix-based commands with Anaconda 2 (i.e., Python 2.7) in Windows 7. For example, these commands ls, mkdir, rm,... can work properly with

相关标签:
2条回答
  • 2020-12-29 11:53

    At the command line in Anaconda Prompt, use conda to install the m2-base utilities:

    conda install m2-base
    

    This will give you the basic linux commands.

    0 讨论(0)
  • 2020-12-29 12:09

    One simple way to have access to those commands on your windows machine would be to use cygwin. You can install that. Then open a "Cygwin Bash Shell" and in this shell you will be able to use ls, mkdir, rm, ... as well as create conda environments etc. You can use this instead of your command prompt if you want.

    0 讨论(0)
提交回复
热议问题