I tried to install Anaconda3-4.1.1-Linux-x86_64.sh, but after saving files in terminal an error comes saying permission denied. How can I resolve this?
Asked
Active
Viewed 5.0k times
1 Answers
7
Downloading and Installing Anaconda (Linux)
Download Anaconda from https://www.continuum.io/downloads.
Run installer script:
$ bash AnacondaX-x.x.x-Linux-x86[_64].shAccept the license (enter shows the license). After reading it, scroll to the end with space. Accept it by typing
yesand enter when required.Specify the install location. (Default is
~/anacondaX, where X is the major version of Python release, e.g. X=3 for Python 3.5)Add this location to PATH if your installer asks you to. Otherwise, you should add this location on your own to you PATH in
~/.bashrc:export PATH="/home/$USER/anacondaX/bin:$PATH"
Uninstalling
Anaconda is installed in a single directory. So, for uninstalling it, just remove the entire directory. Default install location is ~/anacondaX. Removing is easy:
rm -rf ~/anacondaX
Thiago Rider Augusto
- 1,730