conda

Conda SSL Errror

Conda SSL Errror Question: I’m wondering if someone has encountered this issue before. I’m trying to install a python library for a work project. I was able to install the library with pip, but I actually need it in the Conda Environment, as this is the environment I use for my jupyter notebook projects. Unfortunately, …

Total answers: 1

Cannot install stellargraph

Cannot install stellargraph Question: I am trying to install stellargraph package. I created a new conda environment with python 3.6 and tried to install it with pip install stellargraph but when I try to write import stellargraph in jupyter, it says ModuleNotFoundError: No module named ‘stellargraph’. I also tried it with PyCharm to create a …

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

package get installed under the include folder and not under site-packages

package get installed under the include folder and not under site-packages Question: I am trying to install a package (more specifically diplib) with conda install -c conda-forge diplib but for some reason nothing is added to envs/env_name/lib/site-packages. The command runs fine, no warnings/error at all. Everything looks normal but I am still getting ‘ModuleNotFoundError: No …

Total answers: 1

python – any function to access pickle causes FileNotFoundError

python – any function to access pickle causes FileNotFoundError Question: The error: > Traceback (most recent call last): > File ".scriptspickle_threed_future_dataset.py", line 127, in <module> > main(sys.argv[1:]) > File ".scriptspickle_threed_future_dataset.py", line 101, in main > scenes_dataset = ThreedFront.from_dataset_directory( > File "c:usersmibigdesktopatissscene_synthesisdatasetsthreed_front.py", line 169, in from_dataset_directory > scenes = parse_threed_front_scenes( > File "c:usersmibigdesktopatissscene_synthesisdatasetsutils.py", line 129, in …

Total answers: 1

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