anaconda3

Jupyter Notebook doesn’t recognise Anaconda installation

Jupyter Notebook doesn’t recognise Anaconda installation Question: For some reason Jupyter won’t recognise the Anaconda installation import os result = os.popen(‘conda list anaconda$’).read() print(‘nAnaconda Version:n’, result) Result: Anaconda Version: packages in environment at C:UsersAndyanaconda3: Name Version Build Channel I’ve updated the Windows Path variables as follows C:UsersAndyanaconda3; C:UsersAndyanaconda3Scripts The conda.exe application is in the Scripts …

Total answers: 1

anaconda 3 directory remains after uninstall

anaconda 3 directory remains after uninstall Question: EDIT Please note I deleted ANACONDA3envs and ANACONDA3pkgs as per anaconda docs linked in main answer. Contents of Anaconda directory: C:Usersu03132tk>cd C:ANACONDA3 C:ANACONDA3>dir Volume in drive C is OS Volume Serial Number is 0C73-2057 Directory of C:ANACONDA3 15/06/2023 11:23 <DIR> . 15/06/2023 11:23 <DIR> .. 15/06/2023 11:12 <DIR> …

Total answers: 1

Conda very slow and downloading only from conda forge?

Conda very slow and downloading only from conda forge? Question: The issue I have recently installed Anaconda3 (as downloaded on 31-Mar-2023) onto a Windows PC. I chose the installation for my username only, which doesn’t require admin rights. It’s my private PC, so no corporate firewalls. Quite simply, conda doesn’t work. Even a banal command …

Total answers: 1

Issue connecting to the Kernel in Jupyter notebook

Issue connecting to the Kernel in Jupyter notebook Question: I have just installed my Jupyter notebook to run Python . I have an active internet connection and python installed . I am getting an error saying "A connection to the notebook server could not be established. The notebook will continue trying to reconnect. Check your …

Total answers: 1

how to solve cpp library confliction within anaconda?

how to solve cpp library confliction within anaconda? Question: I tried to install lightgbm with gpu in anaconda. I used pip in anaconda directly with –install-option=’–gpu’. it’s built successfully and lib_lightgbm.so links to libstdc++.so under /lib64. as anaconda has it’s own libstdc++.so under anaconda3/lib and it’s different from the one under /lib64, when I try …

Total answers: 1

Anaconda-Navigator.app missing after installation on M1 macOS Monterey

Anaconda-Navigator.app missing after installation on M1 macOS Monterey Question: I installed Anaconda, but it did not include the GUI app, Anaconda-Navigator app in the Applications folder. What do I need to do to get the GUI app? Details: Computer: 2021 14-inch MacBook Pro, M1 Max OS: macOS Monterey 12.5 A month ago, I had the …

Total answers: 4

Cannot use the Translator() function from googletrans module in Python

Cannot use the Translator() function from googletrans module in Python Question: I’m using this code to translate the string ‘Hola mundo’: text = ‘Hola mundo’ from googletrans import Translator Translator().translate(text) But I obtain this error: AttributeError: ‘NoneType’ object has no attribute ‘group’ I’m using Jupyter Notebook with Python version 3.9 and pip version 21.2.4. Could …

Total answers: 3

Opencv not installing on Anaconda prompt

Opencv not installing on Anaconda prompt Question: In order to download OpenCV on through Anaconda prompt, I run the following: conda install -c conda-forge opencv However, whenever I try to download, there I get the messages of failed with initial frozen solve. Retrying with flexible solve. Failed with repodata from current_repodata.json, will retry with next …

Total answers: 1

No module named 'PyPDF2._codecs', even after already installed

No module named 'PyPDF2._codecs', even after already installed Question: I have installed PyPDF2==2.3.0, but I still get the error below when I import PyPDF2. The error message is: ModuleNotFoundError: No module named ‘PyPDF2._codecs’ Asked By: Guy || Source Answers: This issue was only present in the PyPI distribution of PyPDF2==2.3.0 for a couple of hours. …

Total answers: 2