anaconda

Can't lauch spyder on new envs

Can't lauch spyder on new envs Question: When i lauch spyder on another env than "base" i get this error : fromIccProfile: failed minimal tag size sanity C:Usersesto5anaconda3envsPIPlibsite-packagesparamikotransport.py:219: CryptographyDeprecationWarning: Blowfish has been deprecated "class": algorithms.Blowfish, Traceback (most recent call last): File "C:Usersesto5anaconda3envsPIPScriptsspyder-script.py", line 10, in <module> sys.exit(main()) File "C:Usersesto5anaconda3envsPIPlibsite-packagesspyderappstart.py", line 252, in main mainwindow.main(options, args) …

Total answers: 1

JVM not running in Spyder 5.4.1 using PyImageJ

JVM not running in Spyder 5.4.1 using PyImageJ Question: I am building a piece of software and trying to combine my analysis scripts between Spyder 5.4.1 (Python 3.8) and and ImageJ macros. My datasets are a series of .tif stack images, so I have decided to use PyImageJ to access the ImageJ2 gateway interface to …

Total answers: 1

Anaconda Navigator not opening on M2 MacBook Air running MacOS Ventura

Anaconda Navigator not opening on M2 MacBook Air running MacOS Ventura Question: I just downloaded anaconda on my M2 MacBook Air running MacOS Ventura (version 13.2.1). The download process went smoothly and I was able to locate Anaconda Navigator. But when I try opening it, it just won’t open without even showing any error message. …

Total answers: 1

SOLVED – VS Code startup <conda active base> error message

VS Code startup <conda active base> error message Question: I just getting started learning with Anaconda on Visual Studio Code. Previously, I only used the Python as an interpreter. After downloaded the Anaconda and upon opening the VS Code I always encounter the following error message. PS C:UsersuserDocumentsPythonLearn> conda activate base conda : The term …

Total answers: 2

How to convert python file to exe? The 'pathlib' package is an obsolete backport of a standard library package and is incompatible with PyInstaller

How to convert python file to exe? The 'pathlib' package is an obsolete backport of a standard library package and is incompatible with PyInstaller Question: I am receiving following error while converting python file to .exe I have tried to uninstall and intsall pyinstaller but it didnt helped out. i upgraded conda but still facing …

Total answers: 5

conda: what difference does it make if we set pip_interop_enabled=True?

conda: what difference does it make if we set pip_interop_enabled=True? Question: There are many posts on this site which reference, typically in passing, the idea of setting pip_interop_enabled=True within some environment. This makes conda and pip3 somehow interact better, I am told. To be precise, people say conda will search PyPI for packages that don’t …

Total answers: 1

Stray Python processes in memory on MacOS 11.6

Stray Python processes in memory on MacOS 11.6 Question: I have a Macbook Air M1 from 2020 with MacOS Big Sur (11.6). I regularly use Python with Jupyter notebooks, or from the terminal. To install Python, I use Anaconda3 for MacOS Apple Silicon. I often use Python from different conda environments. After I close all …

Total answers: 1

Can Anaconda tell you Conda-Forge url of an installed package?

Can Anaconda tell you Conda-Forge url of an installed package? Question: I’m trying to build a dependency tree for a series of python package installs, and I’d like to include the conda-forge url for each package. Is there a way to find the url of an installed package using the command line interface? Asked By: …

Total answers: 1

How to install mysqlclient v2.0.1 in anaconda/conda

How to install mysqlclient v2.0.1 in anaconda/conda Question: I try to install mysqlclient v2.0.1 in anaconda/conda conda install -n py37 mysqlclient=2.0.1 or conda install -c "conda-forge/label/cf202003" -n py37 mysqlclient=2.0.1 But I get such error message: Solving environment: failed with initial frozen solve. Retrying with flexible solve. Collecting package metadata (repodata.json): done Solving environment: failed with …

Total answers: 1

Is there a method to run an Anaconda environment in Google Colab?

Is there a method to run an Anaconda environment in Google Colab? Question: I am having a YML file for a Conda environment that run with Python 3.8.15 (environment.yml). I am currently trying to load that file into my Google Colab, based on this answer: conda environment in google colab [google-colaboratory]. !wget -c https://repo.anaconda.com/archive/Anaconda3-2022.10-Windows-x86_64.exe !chmod …

Total answers: 2