creationkrot.blogg.se

Install anaconda windows 10 command line
Install anaconda windows 10 command line






install anaconda windows 10 command line
  1. #Install anaconda windows 10 command line how to
  2. #Install anaconda windows 10 command line install

I rely on the website maintaining order so that the most recent version is on top. head -n 1 returns the first line of the input.So first, we select all lines that contain "Anaconda3", then of those, we select all lines containing "Linux", and then all lines containing "86_64" (for the 64-bit version). grep "text" returns the lines from its input that contain text.| is called "pipe", and sends the output of the preceding command to the next command.wget -q -O - URL quietly ( -q) gets the html at URL (in this case, which is accessed as $CONTREPO) and sends it to standard out ( -O -).The grep filters in line 3 can be altered to match your requirements, of course. Wget -O ~/Downloads/anaconda.sh $CONTREPO$ANACONDAURLīash ~/Downloads/anaconda.sh -b -p $HOME/anaconda3 # Get the topmost line that matches our requirements, extract the file name.ĪNACONDAURL=$(wget -q -O - $CONTREPO index.html | grep "Anaconda3-" | grep "Linux" | grep "86_64" | head -n 1 | cut -d \" -f 2) # Stepwise filtering of the html at $CONTREPO Source: addition to answer, to get the latest python3 64-bit Linux version: CONTREPO=

#Install anaconda windows 10 command line install

Python 3 anaconda install bash script # Go to home directoryīash Anaconda3-4.2.0-Linux-x86_64.sh -b -p ~/anaconda # You can change what anaconda version you want atīash Anaconda2-4.2.0-Linux-x86_64.sh -b -p ~/anacondaĮcho 'export PATH="~/anaconda/bin:$PATH"' > ~/.bashrc Python 2 anaconda install bash script: # Go to home directory If you are trying to it entirely in command line you use a bash script

install anaconda windows 10 command line

If you encounter any issues, please try disabling your antivirus software.Īs all of Anaconda is contained in a single directory, uninstalling Anaconda is simple (you simply remove the entire install location directory): $ rm -rf ~/anaconda Note: You do NOT need root privileges to install Anaconda, if you select a user writable install location, such as ~/anaconda.* After the self extraction is finished, you should add the anaconda binary directory to your PATH environment variable.Īs all of Anaconda is contained in a single directory, uninstalling Anaconda is easy (you simply remove the entire install location directory).

#Install anaconda windows 10 command line how to

These instructions explain how to install Anaconda on a Linux system.Īfter downloading the Anaconda installer, run the following command from a terminal: $ bash Anaconda-2.x.x-Linux-x86.shĪfter accepting the license terms, you will be asked to specify the install location (which defaults to ~/anaconda).








Install anaconda windows 10 command line