本文介绍了在Windows操作系统中将基于Unix的命令与Anaconda一起使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我曾经在Windows 7中与Anaconda 2(即Python 2.7)一起使用多个基于Unix的命令.例如,这些命令ls, mkdir, rm,...可以与Anaconda命令提示符一起正常使用.

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 Anaconda Command Prompt.

最近,我已经升级到Windows 10并安装了运行Python 3.5的Anaconda 3.上面提到的这些命令不能在Anaconda 3中使用.我曾尝试卸载并重新安装Anaconda 3,但是它可以像以前一样工作.

Recently, I have upgraded to Windows 10 and installed Anaconda 3 running with Python 3.5. These command mentioned above cannot be used in the Anaconda 3. I have tried to uninstalled and reinstalled Anaconda 3 for times, but it can work as before.

有人建议吗?

推荐答案

在Anaconda Prompt的命令行中,使用conda安装基于m2的实用程序:

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

conda install m2-base

这将为您提供基本的Linux命令.

This will give you the basic linux commands.

这篇关于在Windows操作系统中将基于Unix的命令与Anaconda一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 11:56