这个问题可能很奇怪,或者由于一些天真的错误,但到目前为止我还没能解决这个问题:我无法在我的Conda运行终端中输入任何内容。
我想在我的Win64 / Win10机器中安装Pandas并按照谷歌的在线教程here和其他可见链接进行安装,我了解到使用Anaconda进行安装更容易。
因此,我安装了Anaconda并遵循此link的命令我试图在我的Conda终端中运行以下命令
conda install -c conda-forge pandas=0.19.0
但是,当我打开Conda.exe时,终端会打开,但不接受来自键盘或鼠标的任何输入。 (即使以管理员身份运行)。
有谁可以指出原因是什么?
答案 0 :(得分:1)
To expand upon @Sohier's comment, you should run those commands in your "Command Prompt" terminal (i.e. cmd.exe
). The conda.exe
program that you are executing is designed to be run from the command line; it takes parameters.
Try opening your command prompt and then typing conda list
. You should see a long list of packages including pandas
. If you don't see it there then you can install it using conda install pandas
. This will install pandas
in your root conda
environment.
答案 1 :(得分:-1)
您应该理解'命令提示符'和'anaconda提示符'界面看起来相似但不相同。为了明确起见,在anaconda提示符中,通常以(基本)开头,而命令提示符以C:或D:开头(视情况而定)。
在熊猫上,每当您安装anaconda时,都会随附一些基本软件包。因此,您无需再次安装pandas,numpy等。