conda-forge / ruamel.yaml-feedstock

A conda-smithy repository for ruamel.yaml.
BSD 3-Clause "New" or "Revised" License
1 stars 20 forks source link

ModuleNotFoundError: No module named 'ruamel.yaml' #153

Open yarikoptic opened 3 years ago

yarikoptic commented 3 years ago

Issue:

after installing ruamel.yaml package, there is still no ruamel.yaml module:

from bash history:

 2144  conda create -c conda-forge -n dandi-ruamel-troubleshoot -y ruamel.yaml
 2145  conda activate dandi-ruamel-troubleshoot

results in

(dandi-ruamel-troubleshoot) $ python -c 'import ruamel.yaml'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'ruamel.yaml'


Environment (conda list):

``` (dandi-ruamel-troubleshoot) $ conda list # packages in environment at /home/dandi/miniconda3/envs/dandi-ruamel-troubleshoot: # # Name Version Build Channel _libgcc_mutex 0.1 conda_forge conda-forge _openmp_mutex 4.5 1_gnu conda-forge ca-certificates 2021.10.8 ha878542_0 conda-forge ld_impl_linux-64 2.36.1 hea4e1c9_2 conda-forge libffi 3.4.2 h9c3ff4c_4 conda-forge libgcc-ng 11.2.0 h1d223b6_11 conda-forge libgomp 11.2.0 h1d223b6_11 conda-forge libstdcxx-ng 11.2.0 he4da1e4_11 conda-forge libzlib 1.2.11 h36c2ea0_1013 conda-forge ncurses 6.2 h58526e2_4 conda-forge openssl 3.0.0 h7f98852_1 conda-forge pip 21.3 pyhd8ed1ab_0 conda-forge python 3.9.7 hf930737_3_cpython conda-forge python_abi 3.9 2_cp39 conda-forge readline 8.1 h46c0cb4_0 conda-forge ruamel.yaml 0.17.16 py39h3811e60_0 conda-forge ruamel.yaml.clib 0.2.2 py39h3811e60_2 conda-forge setuptools 58.2.0 py39hf3d152e_0 conda-forge sqlite 3.36.0 h9cd32fc_2 conda-forge tk 8.6.11 h27826a3_1 conda-forge tzdata 2021d he74cb21_0 conda-forge wheel 0.37.0 pyhd8ed1ab_1 conda-forge xz 5.2.5 h516909a_1 conda-forge zlib 1.2.11 h36c2ea0_1013 conda-forge ```


Details about conda and system ( conda info ):

``` (dandi-ruamel-troubleshoot) $ conda info active environment : dandi-ruamel-troubleshoot active env location : /home/dandi/miniconda3/envs/dandi-ruamel-troubleshoot shell level : 3 user config file : /home/dandi/.condarc populated config files : conda version : 4.9.2 conda-build version : not installed python version : 3.8.3.final.0 virtual packages : __glibc=2.24=0 __unix=0=0 __archspec=1=x86_64 base environment : /home/dandi/miniconda3 (writable) channel URLs : https://repo.anaconda.com/pkgs/main/linux-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anaconda.com/pkgs/r/linux-64 https://repo.anaconda.com/pkgs/r/noarch package cache : /home/dandi/miniconda3/pkgs /home/dandi/.conda/pkgs envs directories : /home/dandi/miniconda3/envs /home/dandi/.conda/envs platform : linux-64 user-agent : conda/4.9.2 requests/2.24.0 CPython/3.8.3 Linux/4.19.0-0.bpo.9-amd64 debian/9.13 glibc/2.24 UID:GID : 1001:1015 netrc file : /home/dandi/.netrc offline mode : False ```