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
3
votes
1 answer

How to fix the error message "symbol not found in flat namespace '_cblas_caxpy' "?

I am trying to import msprime and on MacOS and I get the following traceback Traceback (most recent call last): File "/usr/local/filename.py", line 1, in import msprime File…
Loosh
  • 31
  • 3
3
votes
1 answer

Where does conda get the default configuration values without a `.condarc`?

I went looking for some conda settings. (If you must know, it was related to messing with my bash's $PS1 - decisions whether to use conda's config or perhaps environment variables.) For finding the settings, the instruction was to look in .condarc.…
bballdave025
  • 1,347
  • 1
  • 15
  • 28
3
votes
1 answer

make error in conda env need libpython3.9.a but only have libpython3.9.so

I'm using centos7 and latest anaconda release with python3.9 to build a web server, but pip install uwsgi returned an error: "libpython3.9.a" not found. Only "libpython3.9.so" was provided by anaconda3. Seems that there are some solutions for macos…
Denghao Li
  • 33
  • 3
3
votes
1 answer

ffmpeg: not found (Conda Env + Gunicorn + Nginx)

I have installed ffmpeg and can run it from command line. I have anaconda installed and get different result for which ffmpeg command as follow: /usr/bin/ffmpeg (base env) /root/anaconda3/envs/myenv/bin/ffmpeg (myenv) python app.py - The app uses…
Mirwise Khan
  • 1,317
  • 17
  • 25
3
votes
2 answers

How to solve problem running MTCNN in JupiterLab

The function detect_faces() fails in JupiterLab: image = Image.open(filename) imageRGB = image.convert('RGB') pixels = asarray(imageRGB) detector = MTCNN() results = detector.detect_faces(pixels) mtcnn version 0.1.0 The error: AbortedError: …
rikkatti
  • 706
  • 1
  • 8
  • 14
3
votes
1 answer

How do I make sure conda's environment-specific paths are at the top of sys.path?

I have a conda environment, myenv. I realized that the Python interpreter in this environment tries to import packages from /Users/me/.local/lib/python3.8/site-packages before /usr/local/anaconda3/envs/myenv/lib/python3.8/site-packages. I would have…
sjplural
  • 663
  • 1
  • 8
  • 11
3
votes
1 answer

Anaconda on Windows subsystem for Linux (WSL) uses the "wrong" anaconda when creating a Jupyter Notebook

I am using Windows subsystem for Linux WSL with the Ubuntu App (Ubuntu 20.04 LTS). I have installed Anaconda (Anaconda3-2020.11-Linux-x86_64) on my Windows 10 Education 1909. I have Jupyter notebook, and can run this in the Firefox on my computer…
3
votes
2 answers

What do these conda warnings on tensorflow mean? Any side effects if I leave them alone and how to fix them?

I recently upgraded to tensorflow v2.3 on anaconda 2020.7 distribution. I am using Windows 10. Whenever I run conda update --all, I encounter the following warning message; Collecting package metadata (current_repodata.json): done Solving…
user1315789
  • 3,069
  • 6
  • 18
  • 41
3
votes
1 answer

rstudio cannot be installed on this environment (Anaconda3 on Windows 10)

I am on Windows 10, and have installed Anaconda3 individual edition (version 2020.11, latest as of Dec. 12, 2020). I want to install RStudio inside Anaconda3. I created a new environment called renv (also tried rstudio, renv2, etc) and checked both…
Douglas Lear
  • 326
  • 5
  • 7
3
votes
1 answer

ERROR conda.core.link:_execute(698): An error occurred while installing package 'defaults::qt-5.9.7-vc14h73c81de_0'

I am getting an error whenever I want to install Anaconda. I tried several version and the error keeps appearing. Preparing transaction: ...working... done Executing transaction: ...working... WARNING conda.core.envs_manager:register_env(50): Unable…
Liviosah
  • 325
  • 2
  • 11
3
votes
3 answers

Pandas incompatible with numpy

I am using anaconda 3. When I try to import pandas I receive the following message: ImportError: this version of pandas is incompatible with numpy < 1.15.4 your numpy version is 1.15.3. Please upgrade numpy to >= 1.15.4 to use this pandas…
Andrei ND
  • 41
  • 1
  • 2
3
votes
1 answer

jupyterlab-execute-time although installed does not function in the notebok with jupyterlab 2.2.0a0

I have installed jupterlab version 2.2.0a0 and the extension jupyterlab-execute-time. However when I run a cell the execution time is not reported: What should I do?
user8270077
  • 4,621
  • 17
  • 75
  • 140
3
votes
1 answer

pytest githook on Windows with Anaconda

I have the following setup: Windows 10 python installed via Anaconda Virtual environment setup via Anaconda for running and testing my project with pytest git version control via MINGW Now I'd like to set a githook that runs all my tests before I…
3
votes
2 answers

Anaconda/Jupyter notebook/500 : Internal Server Error/windows 10/python3

I am learning data science with python and R, in my first course i downloaded python3, R and Rstudio and in the current course i am learning using jupyter and downloaded anaconda to handle jupyter notebook. when i tried to convert .ipyth file to PDF…
Karim omar
  • 31
  • 2
3
votes
4 answers

Problems with anaconda and VScode

I have been using vsCode for my HTML edits and I have just started using python 3.8 and anaconda to make some graphs for work. I have been succesfull in using anaconda with the IDE that came with it during download, Spyder. But not a single one of…