Questions tagged [anaconda3]

359 questions
16
votes
3 answers

PytestUnknownMarkWarning: Unknown pytest.mark.xxx - is this a typo?

I have a file called test.py with the following code: import pytest @pytest.mark.webtest def test_http_request(): pass class TestClass: def test_method(self): pass pytest -s test.py passed but gave the following warnings: pytest…
Jonathan L
  • 6,404
  • 3
  • 39
  • 30
11
votes
8 answers

Anaconda Error - module 'brotli' has no attribute 'error'

I updated anaconda using Anaconda Command Prompt. After update whenever I run any command ex: conda info or conda list I get the below error module 'brotli' has no attribute 'error' I would Really appreciate any help on this! Not sure how it solve…
TigSh
  • 355
  • 2
  • 13
7
votes
1 answer

How to specify the architecture or platform for a new conda environment? (Apple Silicon)

Is there a way to specify the architecture/platform when creating a new conda environment? Alternatively, how does conda detect its current architecture/platform when its run? What I'm aiming to do is this: I'm running on an Apple Silicon laptop.…
Bob
  • 980
  • 7
  • 22
7
votes
2 answers

conda.exe: error while loading shared libraries: libz.so.1

Unable to install Anaconda3-2019.10-Linux-x86_64 in my RHEL machine; Getting the error -> conda.exe: error while loading shared libraries: libz.so.1: failed to map segment from shared object: Operation not permitted. Anaconda or Miniconda version: …
bkrishna2006
  • 59
  • 1
  • 14
6
votes
5 answers

Why do I get EnvironmentNotWritableError while installing eli5

I'm new to Python (1 month into Python). Trying to install eli5 to Python. I used conda install -c conda-forge eli5 Got error message EnvironmentNotWritableError: The current user does not have write permissions to the target environment. …
Ang Sheng Jun
  • 91
  • 1
  • 6
5
votes
1 answer

Conda not recognizing that I have node installed?

I open the terminal. jupyter labextension install @jupyterlab/github An error occured. ValueError: Please install nodejs >=10.0.0 before continuing. nodejs may be installed using conda or directly from the nodejs website. See the log file for…
Her0Her0
  • 143
  • 2
  • 9
4
votes
1 answer

Anaconda won't force quit in Mac

I can't seem to force quit Anaconda-Navigator. It is apparently running on my Mac but when i try to force quit it nothing happens, and when i try to launch it also nothing happens. Any help is welcomed.
pkrep
  • 49
  • 2
4
votes
2 answers

Can not import pipeline from transformers

I have installed pytorch with conda and transformers with pip. I can import transformers without a problem but when I try to import pipeline from transformers I get an exception: from transformers import…
user8270077
  • 3,589
  • 5
  • 41
  • 90
4
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
  • 61
  • 4
4
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,…
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
  • 1,309
  • 3
  • 14
  • 31
3
votes
1 answer

After removing Anaconda3 I still get these errors in PowerShell

I'm getting the below error when I open visual studio. What can I do to completely remove the defaults? I already tried reinstalling and uninstalling Anaconda3, all versions of Python and Visual Studio I want to start from scratch without…
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
  • 3,589
  • 5
  • 41
  • 90
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
4 answers

Anaconda installation get stuck at extract: anaconda-2020.02-py37_0.tar.bz2?

I am new to python. I am installing Anaconda 3 2020.02 (64-bit) on my windows 7 laptop. It get stuck at file name as anaconda-2020.02-py37_tar.bz2 I tried multiple time but it's happening everytime
Datta Diware
  • 390
  • 3
  • 11
1
2 3
23 24