Skip to content

Tag: conda

“[lib] requires [dep], which is not installed” when running PR tests on conda-forge feedstock, despite explicit call in grayskull-generated meta.yaml

I’m trying to upgrade the conda-forge version of xagg to the latest version (v0.3.0). The built-in Azure Pipelines tests that run when I set up a PR of the feedstock into the conda-forge repository however fail, with the error: (the full log is here) The odd thing is that pytables is explicitly mentione…

No Spyder-Terminal on Spyder 5.0.5 (MacOS)

I tried to install spyder terminal on my spyder. Steps oI followed (in iPython Console): Then: And I get an error message that says: I thought that it was because of the enviroment, so I tried to create a new conda enviroment with the spyder terminal module. I do as follows (in my terminal): Then: And finally…

No module named pandas in conda command prompt

I’m trying to run a script made on spyder that runs with no problem. But when I try to run the same script it says Pandas is not installed. But I checked on my conda env e seems to be already installed. Why this happens? Answer Problem You are using pip python’s default package manager to install …

Snakemake – How to set conda environment path

In Snakemake, conda environments can be easily set up by defining rules as such conda: “envs/my_environment.yaml”. This way, YAML files specify which packages to install prior to running the pipeline. Some software requires a path to third-party-software, to execute specific commands. An example o…