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
2 answers

how to update scan Cython code in Theano?

when I use following ways to update ,there is some problem, system told me "missing header for unified diff at line 1 of patch cd theano/scan_module/ cython scan_perform.pyx patch scan_perform.c numpy_api_changes.diff by the way, the reason I want…
andy
  • 1,951
  • 5
  • 16
  • 30
5
votes
3 answers

Anaconda python ver5.3 hangs at update forever

I just installed anaconda ver5.3 which uses python v3.7 I ran the command; conda update anaconda The command hangs there forever. There is no error message. No hint what is wrong. Has anyone encountered similar problems? How did you solve it? I am…
user3848207
  • 3,737
  • 17
  • 59
  • 104
5
votes
0 answers

Which folders should I remove after uninstalling Anaconda on Windows 10?

[Prehistory: I have a lot of bugs in my Anaconda Installation (like Spyder not opening, not being able to install certain packages and so on). I think this problems occur because I installed it when python 3.7 was very new and not compatible with…
Jakob
  • 1,063
  • 9
  • 17
5
votes
2 answers

How do I change my default working directory for Python (Anaconda) on VSCode?

So I have been trying to open very basic files like this: inputFile = open("keywords.txt", "r") But I get this error: FileNotFoundError: [Errno 2] No such file or directory: 'keywords.txt' This must be because Python's default working directory is…
5
votes
2 answers

Set my jupyter notebook to use python version of an enviroment

I opened a jupyter notebook from an anaconda enviiroment but the kernel uses a default version of python instead of the python defined in this enviroment (That has all pthe packages i installed). How can I change it? (myEnv)…
Cranjis
  • 1,590
  • 8
  • 31
  • 64
5
votes
1 answer

How to install PyGObject in Anaconda on linux?

When importing PyGObject in my Anaconda Python3.7 installation, import gi gi.require_version("Gtk", "3.0") from gi.repository import Gtk I get following error message: ValueError: Namespace Gtk not available I installed pygobject and…
felixinho
  • 625
  • 7
  • 17
5
votes
1 answer

Initialize Google Earth Engine API with a proxy server

After authentication, the earth engine API connects with the servers successfully with the Initialize() function. import ee ee.Initialize() However, as soon as I start using a proxy server, the initialization fails and generates the following…
Utkarsh Sah
  • 301
  • 1
  • 2
  • 12
5
votes
2 answers

How to run pyramid auto arima on Anaconda Jupyter notebook?

Apparently, Anaconda has a different pyramid package and it is for web framework. https://anaconda.org/anaconda/pyramid The user guide for arima pyramid suggests that one uses pip to install pyramid-arima.…
David293836
  • 1,165
  • 2
  • 18
  • 36
5
votes
1 answer

How to import an Anaconda environment .yml in virtualenv?

I just need to import an Anaconda .yml environmental file in virtualenv virtual environment. The reason I need to do this is because on nVidia Jetson TX2 developer board I cannot install and run Anaconda distribution (It is not compatible with ARM…
capocchione
  • 81
  • 1
  • 1
  • 6
5
votes
0 answers

Use Anaconda Navigator with Miniconda's `conda`

I use miniconda due to SSD disk space considerations. Both miniconda and anaconda use conda as the underlying package manager. Is it possible to use Anaconda's Navigator package manager to manage conda as installed by miniconda? If not, is there any…
Tom Hale
  • 40,825
  • 36
  • 187
  • 242
5
votes
2 answers

Anaconda: Can You Simply Copy an Installation / Environment Folder?

Reinstalling environments is a huge hassle, I find that exporting and importing doesn't work and you have to manually figure out how to get newer packages to install and work together, so you must keep a log of installation history. Can I just save…
user1581390
  • 1,900
  • 5
  • 25
  • 38
5
votes
1 answer

How to change directory when activating conda environment in Windows

Based off of this Q&A (answered by Nehal J Wani) it seems that it's possible to create and then modify a certain config file in order automatically change directories when activating a conda environment. Does someone know how to do this in Windows…
Liam Hanninen
  • 1,525
  • 2
  • 19
  • 37
5
votes
1 answer

Error importing numpy from Anaconda, using conda (DLL load failed: The specified module could not be found)

When I use Anaconda, importing numpy gives me the following error: Traceback (most recent call last): File "", line 1, in File"C:\Users\s140041\Anaconda3\envs\testenv\lib\site-packages\numpy\__init__.py", line 142, in
Psychotechnopath
  • 2,471
  • 5
  • 26
  • 47
5
votes
2 answers

install all of anaconda from miniconda

What the title says: if I have miniconda installed, what's the easiest way to install all the packages that would have been installed, had I started by installing anaconda instead? For context, I'm doing this with docker. I'm starting with…
Colin
  • 3,670
  • 1
  • 25
  • 36
5
votes
2 answers

Dependencies missing in current win-64 channels

After the default Graphlab Install executable failed, I'm now trying to install Graphlab using the command prompt. Step-by-step tutorial on how to do it can be found here. When running the line conda create -n gl-env python=2.7 anaconda=4.0.0 I…