How to access Anaconda command line in Windows 10 (64-bit)

I had to install the 64-bit version of Anaconda with python 3.5 on Windows 10. I made the default settings ( AppData/Continuum/Anaconda3). However, after installation, I do not know how to access the Anaconda command line so that I can use conda to install packages. I also tried installing Anaconda's 64-bit version C:/Program Files,, but some of the python script did not like the space, and it could not be installed.

What can I do to access the Anaconda invitation?

+19
source share
5 answers

Windows ( ) "Anaconda". . "Anaconda Prompt". "Anaconda Prompt". Python, conda .

+24

Anaconda Prompt ,

%windir%\System32\cmd.exe "/K" C:\ProgramData\Anaconda3\Scripts\activate.bat C:\ProgramData\Anaconda3 .

→ → → →

%HOMEPATH% → → →

: Windows 10, : Anaconda 10 (64 )

+4

"\ Anaconda3_64 \" "\ Anaconda3_64\Scripts \" PATH. conda powershell .

+1
source

To create Anaconda Prompt using the command line, simply create a command line shortcut file and change the target of the shortcut to:

%windir%\System32\cmd.exe "/K" <Anaconda Location>\anaconda3\Scripts\activate.bat

Example:

%windir%\system32\cmd.exe "/K" C:\Users\user_1\AppData\Local\Continuum\anaconda3\Scripts\activate.bat

+1
source

Try accessing this folder: \ Microsoft \ Windows \ Start Menu \ Programs \ Anaconda3 (64-bit) Here you will find the "Anaconda prompt".

0
source

Source: https://habr.com/ru/post/1691143/


All Articles