Questions tagged [datascience-anaconda]

package manager, an environment manager, a Python/R data science distribution. Has a CLI command named “conda”. Contrast the usage of this tag with installer-anaconda, the system installation program used by Fedora, Red Hat Enterprise Linux, and others.

Anaconda encompasses a “distribution”, which is a package manager, environment manager, and a Python distribution as well as a “cloud” package management service.

Related tags:

Project home page: https://www.anaconda.com/

37 questions
5
votes
2 answers

How to install awscli on Ubuntu 18.04?

This should be trivial but it seems that it is not. I formatted my comp and installed conda(I am used to this package tool) pip install awscli --upgrade --user Requirement already up-to-date: awscli in ./.local/lib/python3.7/site-packages…
MikiBelavista
  • 1,473
  • 8
  • 28
  • 38
5
votes
0 answers

Why does conda not use symlinks for duplicate dependencies?

I wondered whether conda actually made duplicate files for certain dependencies shared by independent environments. I installed two environments env1 and env2. Then I installed the same module cryptography in both of them. Next I searched for the…
5
votes
3 answers

Running a Python script in Conda virtual environment as service

I recently wrote a Python program that is designed to communicate via SMPP SMS server. The issue I'm facing is that I don't know how to run a Python script as a service on my Cent OS server using Conda virtual environment. I'm using a lot of…
4
votes
3 answers

how to modify the anaconda environment prompt in zsh?

To make my command line prompt look prettier on zsh, I added this line to .zshrc: PROMPT='%F{green}%n%f %B%F{blue}%1~%f%b $ ' However, when I activate an anaconda virtual environment (i.e. conda activate base), I see the name of the virtual…
3
votes
1 answer

"mkdir: cannot create directory ‘/opt/anaconda’:Permission denied"

I just installed Ubuntu. I downloaded the anaconda python package and am trying to install it, bash Anaconda-2.1.0-Linux-x86_64.sh at some point the terminal says: Anaconda will now be installed into this location: /home/*username*/anaconda -…
Feyre
  • 133
  • 1
  • 1
  • 6
1
vote
1 answer

Why username and root are missing in linux server after installing tools with conda?

On the Linux server, I have my username that looks like below: (base) [david@meteor ~]$ I tried installing some tools using conda with the following: conda install -c bioconda or conda install -c conda-forge Once all tools are installed I don't…
user9114
  • 11
  • 1
1
vote
1 answer

which command returning undocumented things

I am trying to locate which conda executable I am using. For this, I want to use which command. As per man pages, it should return the path of the executable. Instead it returns some bash function (base) ➜ ~ which conda conda () { \local…
asdf
  • 111
  • 4
1
vote
1 answer

Launch terminal and 'conda activate env' from bash script

I've seen some similar questions on here, but they haven't covered this particular use-case and I haven't been able to make it work on my own. I'm trying to do the following using a script: Open a new terminal in a specific directory (and keep it…
Mandias
  • 33
  • 1
  • 6
1
vote
1 answer

Installed Anaconda on Pop!_OS, but it is not running

I have installed Conda properly, and it is working. I did singh@zeppelin:~$ source~/anaconda3/bin/activate root (base) singh@zeppelin:~$ anaconda-navigator I get the Anaconda Ring that says the program is initializing and then I get this…
1
vote
1 answer

creating new environment in specified directory

my current situation is that I am trying to create a conda environment for some bioinformatics work in a shared server. My assigned home directory with my account only has storage for 10G and I need slightly more. I have a scratch directory with…
1
vote
1 answer

cp: invalid option -- 'h'

I'm using Ubuntu and I'm trying to install this Python package via Anaconda. I followed the steps as they are in the link, and when I type cp -Ri $THIS_DIR/PackageFiles/Scripts $CMDIR (line 59 onwards), I get: cp: invalid option -- 'h' What is the…
1
vote
1 answer

Apache mod_wsgi with conda python 3 -- can't load module

I recently posted this question to clear a hurdle in launching a Flask webapp on my Amazon ec2 RedHat 7 instance. In brief, I am attempting to launch a Flask webapp via an Anaconda environment using Python 3.6. Currently, I have a simple Hello…
nat5142
  • 161
  • 1
  • 7
1
vote
0 answers

Troubles installing Anaconda on Python

I am currently attempting to install Anaconda on my Linux shell. I download and check the hash code of my downloaded file, provide a directory and so on. However, my Unix refuses to execute the script. Once I type $ sudo bash…
RvB
  • 11
  • 1
1
vote
1 answer

Run python code from cron in an Anaconda environment

I need to run a python script using a specific anaconda environment, since I need to execute this script several times per day I would like to do it using the linux crontab file (/etc/crontab). When I launch the script from the linux command line…
jordi vidal
  • 11
  • 1
  • 4
1
vote
1 answer

Installing Anaconda on Linux Mint without messing up preinstalled Python?

I've used on Anaconda with Python 3.x on Windows for years now. It has tons of features that out of the box that I use every day that cannot be easily installed on the bare-bones Python 2.7 that Linux Mint ships with. I've installed Anaconda3 on…
James Draper
  • 210
  • 4
  • 12
1
2 3