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
5
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].sh
Accept the license (enter shows the license). After reading it, scroll to the end with space. Accept it by typing
yes
and 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,640
-
great. thanks. this removed error preventing me from using c++ opencv. hope it helps someone else remove anaconda! I did not need to edit my .bashrc file... error was getting was ~/anaconda3/lib/libicui18n.so.58: undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8' – user391339 Feb 26 '18 at 23:19
~/anaconda
. After extraction, just add the location to the PATH. – Thiago Rider Augusto Aug 01 '16 at 12:25