如何在 Windows 10(64 位)中访问 Anaconda 命令提示符

How to access Anaconda command prompt in Windows 10 (64-bit)(如何在 Windows 10(64 位)中访问 Anaconda 命令提示符)
本文介绍了如何在 Windows 10(64 位)中访问 Anaconda 命令提示符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我必须在 Windows 10 中使用 python 3.5 安装 64 位版本的 Anaconda.我遵循默认设置 (AppData/Continuum/Anaconda3).但是,安装后,我不确定如何访问 Anaconda 命令提示符,以便可以使用 conda 安装软件包.我还尝试在 C:/Program Files, 中安装 Anaconda 64 位,但有几个 python 脚本不喜欢该空间,因此无法安装.

I had to install the 64-bit version of Anaconda with python 3.5 in Windows 10. I followed the default settings (AppData/Continuum/Anaconda3). However, after installation, I am unsure how to access the Anaconda command prompt so that I can use conda to install packages. I also attempted to install Anaconda 64 bit in C:/Program Files, but several of the python script did not like the space and it failed to install.

如何访问 Anaconda 提示符?

What can I do to access the Anaconda prompt?

推荐答案

将鼠标移至 Windows 图标(左下方)并开始输入Anaconda".应该显示一些匹配的条目.选择Anaconda 提示".将打开一个名为Anaconda Prompt"的新命令窗口.现在,您可以从那里使用 Python、conda 和其他工具.

Go with the mouse to the Windows Icon (lower left) and start typing "Anaconda". There should show up some matching entries. Select "Anaconda Prompt". A new command window, named "Anaconda Prompt" will open. Now, you can work from there with Python, conda and other tools.

这篇关于如何在 Windows 10(64 位)中访问 Anaconda 命令提示符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python arbitrarily incrementing an iterator inside a loop(python在循环内任意递增迭代器)
Joining a set of ordered-integer yielding Python iterators(加入一组产生 Python 迭代器的有序整数)
Iterating over dictionary items(), values(), keys() in Python 3(在 Python 3 中迭代字典 items()、values()、keys())
What is the Perl version of a Python iterator?(Python 迭代器的 Perl 版本是什么?)
How to create a generator/iterator with the Python C API?(如何使用 Python C API 创建生成器/迭代器?)
Python generator behaviour(Python 生成器行为)