Questions tagged [anaconda]

This tag should be used for questions regarding the Anaconda Python and R distribution.

Anaconda is a distribution of Python and R language, which is mainly used for large-scale data processing, predictive analytics, and scientific computing.

It is a free to use software, developed and distributed by Continuum Analytics.

241 questions
244
votes
7 answers

Why does "(base)" appear in front of my terminal prompt?

I'm wondering why I have (base) on the left of my terminal prompt. If I run source ~/.profile in the terminal, it disappears. If I close that terminal and reopen a new terminal, (base) is there again. I'd like to know what it is. Here's the content…
Jimmy
  • 2,543
  • 3
  • 8
  • 5
105
votes
11 answers

How to install Anaconda on Ubuntu?

How to install Anaconda for Python on Ubuntu? Is there a way to use apt-get install? I only have command line access to my server. How do I install Anaconda on Ubuntu 14.04 from the command line?
alvas
  • 2,867
  • 10
  • 34
  • 47
36
votes
4 answers

Variable path issue : conda command not found

After installing Anaconda correctly. I wanted after finishing the installation to do the following. I forget to do it while installing anaconda: export PATH="/root/anaconda3/bin" conda --version conda command not found then I opened gedit…
vincent
  • 541
  • 2
  • 8
  • 14
35
votes
9 answers

How do I activate a conda environment in my .bashrc?

I use Conda for package management in Python. I have a basic environment which I use almost all of the time, and I want it to be loaded by default when I open a terminal. How do I set up my .bashrc to load the environment? So far, I tried source…
Eli Sander
  • 473
  • 1
  • 5
  • 7
25
votes
7 answers

Can't create anaconda shortcut to launch from desktop on ubuntu 17.10?

I have used the guide from similar question (How can I create launchers on my desktop?) but nothing works when it comes to Ananconda3 shortcut. Here is my desktop file for anaconda: [Desktop…
steves
  • 371
  • 1
  • 3
  • 4
20
votes
5 answers

How do I switch back to python2 after Anaconda set python3 as the default?

Recently, I installed Anaconda3-2.5.0-Linux-x86_64.sh on my 15.04 and ended up with this! :~$ python --version Python 3.5.1 :: Anaconda 2.5.0 (64-bit) :~$ python2 --version Python 2.7.9 :~$ python3 --version Python 3.5.1 :: Anaconda 2.5.0…
Piyush Deshmukh
  • 305
  • 1
  • 2
  • 7
16
votes
4 answers

ANACONDA - I have to type export PATH=~/anaconda3/bin:“$PATH” everytime I rerun the terminal

Whenever I open a terminal, I have to write export PATH=~/anaconda3/bin:$PATH to use any feature of anaconda I want a persistent path.
Vitor Abella
  • 7,257
  • 12
  • 55
  • 102
11
votes
5 answers

How to set anaconda as a default python?

I have just installed the Anaconda (for ipython notebook -- wanted to run some pandas programme). It is installed successfully but the problem here is whenever I type which python, it is always using a default python as /usr/bin/python It will be…
yogesh Ratudi
  • 111
  • 1
  • 1
  • 4
11
votes
4 answers

conda activate not working in a bash file

I am trying to write a script with the name myscrpt.sh, so when I run it it automatically creates a virtual env and activate it using conda. My conda version is 4.7.1. This is what I have at the beginning of my myscrpt.sh: #!/bin/bash conda create…
Prelude
  • 231
  • 1
  • 2
  • 9
11
votes
7 answers

conda init gives me "no action taken"

I'm getting this while installing anaconda on ubuntu 19.04
Tausif Ahmed
  • 111
  • 1
  • 1
  • 3
10
votes
1 answer

Anaconda-Navigator desktop launcher fails to start application

I recently installed Anaconda on my Xubuntu 16.04 system. To launch the application from a terminal, I simply use anaconda-navigator and it works brilliantly. Now I wanted to create a desktop launcher for the same and add it to my xfce Whisker menu…
Foshiba
  • 386
  • 1
  • 2
  • 8
8
votes
1 answer

man doesn't display anything after package installation with conda on Ubuntu 17.10

When I try to get the manpages with man it seems to display nothing and behaves as though I just pressed enter ~$ man ls ~$ man man I have tried solutions from these pages to no avail question1 question2. This last question matches my condition…
Abhilash
  • 161
  • 1
  • 10
7
votes
2 answers

Can't import pytorch

I am trying to import pytorch but I get an error that module does not exist. I installed via anaconda, and the folder "pytorch-0.1.12-py35_2cu80" exist in anaconda3/pkgs folder. why does it not recognize that it is there? should I rename this…
Rik
  • 449
  • 2
  • 5
  • 12
7
votes
3 answers

GLIBCXX 3.4.30 not found in conda environment

I am installing a package with pip in my conda environment and I keep getting this error: ImportError: /home/anavani/anaconda3/envs/dmcgb/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by…
oofmeister27
  • 71
  • 1
  • 1
  • 3
6
votes
2 answers

What am i doing wrong in Conda?

I am a first time user of of Anaconda & Miniconda suite and I have been having problems running code using it. Every time I try to run a python script in Anaconda or miniconda it comes up with this issue: /miniconda3/lib/libtinfo.so.6: no version…
user1198554
1
2 3
16 17