Questions tagged [anaconda]

Anaconda is a Python distribution that bundles optimized versions of common data science packages. On topic for this tag are installing/uninstalling Anaconda and using Anaconda Navigator. Do not use this tag for questions about Conda environment management (instead use [conda]). Do not use this tag if your question is about using a particular package in the Anaconda distribution.

Anaconda is a commercial data science platform powered by . It was free until 2020, when the terms of services were changed to prohibit commercial usage. Built in with high performance, optimized for Python and with 100+ packages plus easy access to an additional 620+ popular packages for data science including advanced and scientific analytics.

It also includes , an open source package, dependency and environment manager. Thousands more packages can be installed with the conda command, available for , and .

Anaconda Navigator is a graphical user interface installed with Anaconda which can be easier to use than conda from a terminal command line.

A minimized version of Anaconda, has only the conda command line interface and is lighter weight than Anaconda.

Links

14777 questions
5
votes
1 answer

image not found with @rpath/libpoppler.71.dylib

Currently I've installed anaconda. I'm trying to call in my script the osgeo.ogr module to open a shapefile but I have the following error: ImportError: …
5
votes
4 answers

How to find path to current .py file in Spyder (Anaconda)?

Set-up I run a script on my computer, located in the directory Users/path/to/my/script.py. In the script, I use the path to the script, e.g., sub_path = 'Users/path/to/my/' os.chdir(sub_path + 'other_script/') As you can see, I define sub_path in…
LucSpan
  • 1,831
  • 6
  • 31
  • 66
5
votes
3 answers

Missing sample_data from Anaconda matplotlib package

Anaconda 5.1, matplotlib 2.2.2 on Win 10 x64 matplotlib\mpl-data\sample_data is missing from matplotlib package so a number of samples and tutorials that expect to load them with matplotlib.cbook.get_sample_data() fails. Tried to install…
Gabriele
  • 73
  • 1
  • 4
5
votes
0 answers

ModuleNotFoundError: No module named 'pytesseract'

I am using Anaconda Navigator 1.7.0 on windows 10, I have created a virtual environment named "venv" and installed Python version 3.5.2 in that along with selenium, fuzzywuzzy and other modules. Everything works just fine except pytesseract. My…
Stan
  • 227
  • 5
  • 13
5
votes
3 answers

Jupyter Notebook's RISE Missing Slideshow Button

I followed the instructions on installing RISE for Jupyter notebook with Anaconda (conda) but the "Enter/Exit RISE Slideshow" button never showed in the toolbar. I followed the recommendations on solving the problem in the two closed RISE issues…
Sam
  • 11,799
  • 9
  • 49
  • 68
5
votes
0 answers

skip installing confirm('yes' or 'no') in Dockerfile

Here's part of my dockerfile: FROM ubuntu:16.04 #ubuntu:lastest RUN apt-get update COPY Anaconda3-4.4.0-Linux-x86_64.sh /root/ WORKDIR /root/ RUN bash Anaconda3-4.4.0-Linux-x86_64.sh RUN conda upgrade --all ... during the installation…
romlym
  • 561
  • 1
  • 7
  • 26
5
votes
0 answers

import psycopg2 in Anaconda shows ModuleNotFoundError: No module named 'psycopg2'

I have already installed psycopg2 in git bash. I am using windows 7, python 3.6 and Anaonda 1.7.0 $ pip install psycopg2 Collecting psycopg2 Downloading psycopg2-2.7.4-cp36-cp36m-win32.whl (853kB) 100% |████████████████████████████████| 860kB…
singularity2047
  • 951
  • 4
  • 18
  • 28
5
votes
2 answers

Which directory should I save a .pgpass file in when connecting to Postgresql from Python in Anaconda?

I've saved a .pgpass (properly configured) file in `/Users/username/` `/anaconda` `/anaconda/bin/` but the postgresql connection still requests my username and password. I'm using Anaconda and Spyder IDE. Where should I save the .pgpass file?
Charlie Roe
  • 139
  • 1
  • 2
  • 9
5
votes
1 answer

How can I install common-lisp on jupyter notebook from linux?

I had a professor whose has a web-server with common-lisp notebooks in Jupyter Notebook. I want to install it in my Linux, but I don't know how. Any sugestion?
5
votes
3 answers

Fail to import watermark from jupyter notebook with anaconda

I see I have watermark installed: (testenv) ➜ ~ conda install watermark Fetching package metadata ........... Solving package specifications: . # All requested packages already installed. # packages in environment at…
Jas
  • 14,493
  • 27
  • 97
  • 148
5
votes
3 answers

Jupyter notebook become RTL after upgrade

I created python 3.6 environment in miniconda. Jupyter notebook is working now right-to-left How can I fix it ? installed packages: ipykernel 4.7.0 py36_0 conda-forge ipython 6.2.1 …
Naomi Fridman
  • 2,095
  • 2
  • 25
  • 36
5
votes
1 answer

AttributeError: module 'theano' has no attribute 'ifelse'

I am installing anaconda environment with keras, and using theano backend. But I cannot get theano to work. here is what I have done and also errors noted afterwards. Step 1: download the latest version of anaconda, then install in linux by ' bash…
Ziqi
  • 2,445
  • 5
  • 38
  • 65
5
votes
1 answer

import yaml missing error module

>>> import yaml Traceback (most recent call last): File "", line 1, in File "/tools/python_libs/yaml/__init__.py", line 2, in from error import * ModuleNotFoundError: No module named 'error' I don't see how to set…
Ray Salemi
  • 5,247
  • 4
  • 30
  • 63
5
votes
2 answers

How to integrate conda based python project with bazel

I have a python project which uses anaconda as its Python distribution. What's the best way to convert it to bazel. I.e. how to do the following?: Install conda from the build script Install required libraries into this conda distribution Add…
Konstantin Solomatov
  • 10,252
  • 8
  • 58
  • 88
5
votes
3 answers

How can you import a local version of a python package?

I think I've found a bug in matplotlib. I'm using anaconda as a package manager, but had to download matplotlib from github in order to edit it. How do I import my modified version of matplotlib in order to test it? I tried using import…
wouterdobbels
  • 478
  • 1
  • 4
  • 12
1 2 3
99
100