Questions tagged [anaconda]

A scientific Python distribution developed by Anaconda Inc.

Anaconda is a scientific python distribution developed, maintained and distributed by Anaconda Inc.


Installation

Installing Anaconda is done through downloading the most recent installer and running the installation

Updating and Installing packages

Updating Anaconda is done by executing the following commands:

conda update conda
conda update anaconda

Installation of new packages can be done using the conda install <package> command. If the package isn't officially supported by Anaconda, one can use the pip install as well.

Updating packages installed through the conda update <package> command

271 questions
32
votes
2 answers

conda install packagename gives deprecation warning

When trying to run conda install pyproj (but this happens for any package name), I get this error: WARNING: The conda.compat module is deprecated and will be removed in a future release. What does that mean? I'm not sure what the conda.compat module…
14
votes
6 answers

Error when updating conda packages: RemoveError: 'setuptools' is a dependency of conda

I needed to update the matplotlib when I encountered the following error: conda update matplotlib Collecting package metadata: done Solving environment: done ## Package Plan ## environment location: /home/gpu-server/anaconda3 added / updated…
Amuoeba
  • 453
  • 3
  • 5
  • 11
13
votes
2 answers

Control font size of Spyder Python IDE on everything except the editor code

How can I enlarge the font sizes of Spyder Python IDE and hereby I don't speak of the font size of the editor but the font sizes of e.g. the preferences window or the file names above the editor.
ueli
  • 131
11
votes
4 answers

qtpy.PythonQtError: No Qt bindings could be found

I had anaconda running on my machine. few days ago i had to update some of the libraries because they were outdated. after the update, I was not able to launch anaconda-navigator or spyder anymore due to the following error: (base)…
samhar
  • 113
8
votes
4 answers

How to remove (base) from Powershell?

After installing Anaconda for python. (base) appears before the directory in Powershell. How to remove it?
Krishna
  • 83
6
votes
1 answer

How do I create a local update server for Anaconda Python?

I have a set of networked computers that do not have access to the internet. On each of these computers, I need to install the Anaconda Python distribution. This is currently done by manually installing on each machine via a shared folder on a…
James Mertz
  • 26,529
6
votes
5 answers

How do I open an anaconda prompt

I have installed Anaconda on my Ubuntu 16.04 operating system. The instructions I was following seemed to think I would have a desktop icon, but I don't. I eventually found out that I needed to type anaconda-navigator in my terminal to open it. I am…
6
votes
6 answers

Activating conda environment over SSH

I have a virtual machine on Azure where after ssh'ing I can run Conda and python alright: conda activate py36 python some_script.py To run these commands from my machine through SSH, I need to give the full path to Conda: ssh ${USER}@${IP}…
ginjaemocoes
  • 2,151
6
votes
1 answer

'conda activate" is not working in git-bash shell But it looks well on cmd.exe

I am trying to make the virtual env. on my laptop using cmd terminal, I succeed well. However, I stuck on a git-bash terminal. Do you know what is wrong? Follows are the command I took on git-bash terminal. conda info --envs 1) base …
6
votes
1 answer

Using Windows shortcut with 'cmd /c start' not the same as from console

I'm using this method to launch Anaconda Prompt 32-bit version "open a regular command prompt, figure out where miniconda got installed, cd to the miniconda\Scripts directory and type "activate". Rsignell I'd like to be able to activate this from…
xtian
  • 1,025
5
votes
2 answers

How to search and install package in Anaconda (Conda)

I am trying to install pandoc so I did conda install pandoc but nothing popped up and it told me to search. I searched with anaconda search -t conda pandoc and the results are below...How can I install zhenxieit/pandoc? I'm trying to install it to…
O.rka
  • 285
5
votes
1 answer

My Pycharm IDE cannot connect debugger

My Pycharm IDE cannot connect debugger in one of my anaconda environment. As I try to debug some code it says: Connection to Python debugger failed Socket operation on nonsocket: configureBlocking the exit code is -1073741819 (0xC0000005) I moved…
Flicic
  • 51
5
votes
2 answers

Installing Anaconda on Git Bash and trying conda activate results in repeated CommandNotFoundErrors

I've recently refreshed my Git Bash and Anaconda installation, and I am trying to run Git Bash from within VSCode with Anaconda. The issue is that whenever I open the integrated terminal from within VSCode, the terminal does not show up with a…
Daneolog
  • 491
5
votes
0 answers

Using executable from anaconda constructor, activating environment

I am trying to get some python software to a windows machine with no access to internet. To do this, I made an executable of software needed in anaconda using constructor. It installs fine, but when I try to run python it says that the environment…
5
votes
0 answers

Conda update all wants to remove all packages

I've downloaded latest anaconda and when I want to update all, it wants to remove all packages. Any idea about what is going on? C:\WINDOWS\system32>conda update --all Collecting package metadata (current_repodata.json): done Solving…
1
2 3
18 19