Questions tagged [anaconda3]

For questions specifically about version 3 of the Anaconda platform. Probably also add the [anaconda] tag to your question.

Anaconda is an Open Data Science platform powered by Python.

See the tag for details about Anaconda and the use of the tags related to it.

700 questions
6
votes
2 answers

How do you update to Python 3.11 in the base environment of Anaconda? Or at least create a new environment with all the base packages?

I am using the latest Anaconda Navigator (for Python 3.9), and I know how to make a new environment with Python 3.11 in Anaconda. However, whenever I create a new environment, there are hardly any packages there. The base has all the packages I need…
Johnn-1231
  • 85
  • 1
  • 1
  • 5
6
votes
1 answer

winpty python.exe whenever you enter python

I am trying to alias for Python in my ~/.bashrc file. I am entering this command to tell Git Bash where to find the Python executable file: python --version winpty ...from within my [Git Bash] and unfortunately, I am getting this error: MINGW64 ~ $…
Jack
  • 101
  • 1
  • 8
6
votes
2 answers

Switch between anaconda and miniconda (miniforge)

I have installed conda using miniforge. Since my mac has a m1 chip, i had to install conda using Miniforge3-MacOSX-arm64.sh, inorder to get tensorflow working. unfortunately this version (minforge/minconda arm64) doesn't have python2 for some…
imantha
  • 2,676
  • 4
  • 23
  • 46
6
votes
5 answers

No module named 'fbprophet'?

I have tried to install Facebook Prophet in Anaconda on Ubuntu following the instructions at: https://facebook.github.io/prophet/docs/installation.html#installation-in-python. In Anaconda Navigator, when I click on the environment, fbprophet is…
5
votes
2 answers

gdalinfo: error while loading shared libraries: libtiledb.so.2.2: cannot open shared object file: No such file or directory

POST UPDATED to include ldd output see update: In a clean install of conda following these steps, but having issues. I have done in several linux instances and Macbook pc this same procedure flawless before, now testing on a new…
neavilag
  • 609
  • 1
  • 8
  • 20
5
votes
2 answers

CondaMemoryError: The conda process ran out of memory

I installed conda through miniforge : https://github.com/conda-forge/miniforge My environment was working normally until recently where any conda command results in: Collecting package metadata (current_repodata.json): failed CondaMemoryError:…
Saad Bahir
  • 159
  • 2
  • 9
5
votes
3 answers

I cannot use opencv2 and received ImportError: libgl.so.1 cannot open shared object file no such file or directory

**env:**ubuntu16.04 anaconda3 python3.7.8 cuda10.0 gcc5.5 command: conda activate myenv python import cv2 error: Traceback (most recent call last): File "", line 1, in File "/home/.conda/envs/myenv/lib/python3.7/site-packages/cv2/__init__.py",…
nobug
  • 61
  • 1
  • 1
  • 4
5
votes
1 answer

New conda environment is created without python

The conda documentation says that when you use conda create --name myenv The new environment uses the same version of Python that you are currently using because you did not specify a version. However, that's not the case for me. I have Windows…
robertspierre
  • 3,218
  • 2
  • 31
  • 46
5
votes
0 answers

"version `GLIBCXX_3.4.26' not found" error running gdal in anaconda env

I've been relocating a geodjango project from Ubuntu 16.04 to 20.04, creating a conda env from a yml file, running the server I got this error version `GLIBCXX_3.4.26' not found (required by /lib/libgdal.so.26) from other posts I got to check the…
zevloo
  • 109
  • 7
5
votes
1 answer

SSLError: unable to get local issuer certificate (_ssl.c:1076)

I am facing the SSLError, when trying to scrape websites. import requests url = 'https://www.amazon.com/' page = requests.get(url) content=page.content print(content) Output:~\Anaconda3\lib\site-packages\requests\adapters.py in send(self, request,…
4
votes
1 answer

conda wants to remove half my packages if I try to update just one (on a fresh Anaconda installation)

The issue Today (31-Mar-2023) I downloaded Anaconda, uninstalled an older version and installed today's version on a Windows PC (private PC, no corporate firewall). As suggested in another question Conda very slow and downloading only from conda…
Pythonista anonymous
  • 8,140
  • 20
  • 70
  • 112
4
votes
1 answer

Anaconda, Jupyter Notebook and MissingIDFieldWarning

I have already intalled Anaconda 3.When I run Jupyter Notebook and save something. The next problem appears: C:\ProgramData\Anaconda3\lib\site-packages\nbformat_init_.py:128: MissingIDFieldWarning: Code cell is missing an id field, this will become…
4
votes
0 answers

Difference b/w [conda list --explicit] and [conda list --export] commands

I was searching on how to save anaconda environment as requirement.txt files. I came across two commands: conda list --explicit > $dir_path/$file_name.txt conda list --export > $dir_path/$file_name.txt These two created different two text files…
4
votes
0 answers

Failed to initialize anaconda directories Windows 11

I installed anaconda the latest version of anaconda, anaconda3-2022.05 and i got the error failed to initialize anaconda directories and it is pointing towards anaconda3\lib_nsis.py and i don't know what is the problem and even when using old…
4
votes
3 answers

How to get path of conda env from its name?

When I do conda info --envs, I get list of all envs and their locations like this: # conda environments: # base * /Users/mbp/miniconda3 myenv /Users/mbp/miniconda3/envs/myenv Is there a way to get the location of…
Ruchit
  • 336
  • 3
  • 16
1
2
3
46 47