Questions tagged [anaconda3]

359 questions
3
votes
1 answer

Python interactive mode does not work in my anaconda3 environment

Once I try to run python on my conda environment it blcok like this and nothing change: (python3) user todoapp $ python Knowing that python was intalled in my conda env using conda create -n python3 python=3 and I have runned my env using source…
DINA TAKLIT
  • 4,946
  • 7
  • 42
  • 50
2
votes
1 answer

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
  • 452
  • 4
  • 10
2
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
  • 373
  • 1
  • 2
  • 10
2
votes
0 answers

How can I add conda python libraries as ubuntu system root libraries

I am trying to import the scikit and dlib library in my editor. However, it shows module not found. Also, when I try to download the module, it shows that it already exist. I can easily open juptyer notebook via command line. Even when it asks for…
2
votes
1 answer

TypeError: __init__() missing 1 required positional argument: 'msg' everytime i try to download anaconda3 on macbook

I am trying to download anaconda3 terminal version for a 64bit mac OS Catalina to use for python 3.7, and i keep running into the error: Unpacking payload ... concurrent.futures.process._RemoteTraceback: ''' Traceback (most…
hongpastry
  • 91
  • 7
2
votes
2 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
  • 31
  • 1
  • 4
2
votes
2 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
  • 21
  • 2
2
votes
0 answers

Conda and Anaconda errors when installing a package (pythonOCC)

I am trying to install pythonOCC. Their website says in order to download use conda/anaconda. Instructions are here: http://www.pythonocc.org/download/ Specifically it says to type this command: $ conda install -c conda-forge -c dlr-sc -c pythonocc…
user1584421
  • 2,357
  • 7
  • 31
  • 54
2
votes
0 answers

Upgrade jupyter notebook to 6.0.2 with conda

I am trying to upgrade jupyter notebook using conda. When I try conda upgrade notebook I get Updating notebook is constricted by anaconda -> requires notebook==6.0.1=py37_0 The current version of notebook is 6.0.1 I also tried conda install…
L.N.M
  • 45
  • 6
2
votes
1 answer

Understanding Anaconda's warning about adding to PATH variable

I have decided to dabble my toes in using Anaconda in addition to pip, mainly so I can install Github's hub wrapper for git. When I installed Anaconda, one of the prompts asked if I wanted to add Conda to the PATH variable, and recommended against…
rocksNwaves
  • 2,276
  • 14
  • 38
2
votes
1 answer

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
  • 21
  • 1
2
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…
2
votes
0 answers

Problems installing R packages-C compilers on macOS Catalina 10.15.4

I am having issues installing R packages in a conda environment on MacOS 10.15.4. The command install.packages() in R leads to the following type of errors (I am not pasting the full log): ld: symbol(s) not found for architecture x86_64 clang-4.0:…
Manon V.
  • 21
  • 1
2
votes
0 answers

Unsatisfiable error in installing mysql in Anaconda Navigator

I am trying to installing MySQL in Anaconda. But it is showing error in installing the following packages: 1. mysql-python-connector 2. mysql-python Anaconda shows the following error: ''' UnsatisfiableError: The following specifications were…
Student18
  • 95
  • 1
  • 9
2
votes
1 answer

Anaconda, update Pytorch to the latest version 1.5

How could I update PyTorch from 1.4 -> 1.5 using Anaconda either through terminal or navigator? Updating Anaconda with conda update --all updated some of the packages, not all, PyTorch included. Initially, I installed PyTorch by running conda…
vpap
  • 785
  • 2
  • 9
  • 23
1
2
3
23 24