Questions tagged [conda]

Conda is a package management and environment management system. It is open-source, cross-platform and language-agnostic. Written in Python, conda is included in Miniconda and the Anaconda Python distribution.

The conda documentation is available online. conda as a system command is available through Miniconda or the larger Anaconda distribution, made by Anaconda Inc.

7926 questions
3
votes
1 answer

Can not make Tensorflow work with pypy3 and conda. Invalid ELF

I want to try tensorflow inside pypy. I tried a few days and no luck. Following is the detail. I am using UBuntu 18.04. I install conda. I install pypy through conda, conda install -c conda-forge pypy3.6 I got No matching distribution found for…
Joseph Wu
  • 81
  • 1
  • 3
3
votes
1 answer

Install ROS2 on OS X - Error: No module named 'rclpy._rclpy'

I am trying to install ros2 env in Mac. I created a conda env for it. I have installed conda install -c anaconda sphinx and conda install -c conda-forge sphinx-autodoc-typehints. I got the errors when I ran ros2 run demo_nodes_cpp talker: Failed to…
LinNotFound
  • 531
  • 1
  • 5
  • 12
3
votes
1 answer

Trying to use conda install to get anaconda-clean but environment fails to solve and a very slow analysis of conflicts starts

I have been having a lot of issues with anaconda recently. It began with me not being able to install packages using conda install, each time resulting the following error: CondaHTTPError: HTTP 000 CONNECTION FAILED for url I tried uninstalling and…
Alex Barrett
  • 31
  • 1
  • 1
  • 4
3
votes
1 answer

How can I find the location of packages installed by conda, like pip show?

For example, when I use pip install numpy, I can use pip show numpy to get the location of numpy package. When I install numpy by conda, e.g. conda install numpy, how can I get the location of this package?
maplemaple
  • 1,297
  • 6
  • 24
3
votes
0 answers

PackageNotInstalledError when I try to update conda

I tried to install a package with conda and I got a Segmentation fault. The package was pyTorch but I dont think the problem is package specific. I tried then to update my conda hoping for a quick fix but that fails as well with the following…
Aenaon
  • 3,169
  • 4
  • 32
  • 60
3
votes
0 answers

Install packages from conda channel with url

I want to create a conda channel containing packages that I want to share with some people who should install them. I created a channel with all the packages I want to share and i put that channel in a gitlab repository and use the gitlab pages to…
3
votes
2 answers

`R` not working in `anaconda 3` on `Mojave`

I just installed R on Mojave in Anaconda 3 using: conda install r-base r-essentials r-irkernel When I type r I get the following error: dyld: Library not loaded: @rpath/libreadline.6.2.dylib Referenced from:…
K G
  • 1,715
  • 6
  • 21
  • 29
3
votes
1 answer

how to create conda environment from within Miniconda

I have Anaconda3 (Python 3.7) install on my MacOS. For specific project, I installed Miniconda3 (Python 3.6). I would like to install packages with Miniconda but whenever I create new conda environment, it installs it within the Anaconda3 and uses…
A.E
  • 997
  • 1
  • 16
  • 33
3
votes
3 answers

"no module named torch". But installed pytorch 1.3.0 with conda in Ubuntu 18.04.02 Server Edition

installed pytorch with conda : (base) (3.8.0/envs/my_virtual_env-3.8.0) marco@pc:~/facenet_pytorch/examples$ conda install pytorch torchvision cpuonly -c pytorch Collecting package metadata (current_repodata.json): done Solving environment:…
user2315094
  • 759
  • 3
  • 16
  • 29
3
votes
1 answer

How to install conda-pack environment on Window OS

I have packed the conda environment from one Window Server to another one with no internet connection Window server with conda-pack library with the format of ZIP. Yet, I am not sure how to unpack the environment and register it on the anaconda. It…
Platalea Minor
  • 877
  • 2
  • 9
  • 22
3
votes
1 answer

ResolvePackageNotFound: m2w64_c_win-64 while building R package r-ffbase

I'm trying to install an R package in my anaconda environment DS-ML i've created with conda skeleton. The environment has R and python installed in it. The R package is called r-ffbase, and it is on CRAN repository. I'm on C:\users\public. After…
3
votes
1 answer

Conda remove uninstalls more packages than expected

Simplified MWE => Suppose I have Anaconda and do the following: conda create -n demo python=3.6 conda activate demo conda install seaborn The last command installs 39 new packages including seaborn, matplotlib and pandas. Now suppose that time…
pallgeuer
  • 1,216
  • 1
  • 7
  • 17
3
votes
2 answers

Search anaconda environments for envs where a certain package has been installed

I submitted an issue on an open source python library and received feedback that the devs couldn't reproduce the error. I had installed the package into a conda environment, and I want to figure out what environment(s) I installed the package into…
David Marx
  • 8,172
  • 3
  • 45
  • 66
3
votes
0 answers

Conda Package Metadata Not Being Pushed

I have a Python library I created that I have as a Conda package. Although I made sure to include all the metadata fields, when the package is installed on the system none of the details are available, i.e. description, home, etc. The package…
3
votes
1 answer

Not Able to Import PyTorch in Conda Env

Last week I had a working conda env I was using for a project. I have not touched the project in a week. I just went to run a python file (python file.py) that had been running with no errors. Now I get the following error: Traceback (most recent…
HMLDude
  • 1,547
  • 7
  • 27
  • 47
1 2 3
99
100