Questions tagged [mini-forge]
46 questions
8
votes
3 answers
How to use Mamba Miniforge CLI in VSCode with Windows
I am trying to debug some Python code that must run in a Mamba environment. In order to run the code (but not debug), I can open the Miniforge Prompt command line application, activate my enviroment (mamba activate my_env), and then run my python…

stackoverflowing321
- 333
- 4
- 14
5
votes
1 answer
what are the differences among mambaforge, mambaforge-pypy3, miniforge, miniforge-pypy3
there have been explanations about the different between miniforge and miniconda
miniforge is the community (conda-forge) driven minimalistic conda installer. Subsequent package installations come thus from conda-forge channel.
miniconda is the…

wsdzbm
- 3,096
- 3
- 25
- 28
4
votes
3 answers
How to install PyQt5 on M1 arm64 architecture?
I have an M1 mac, but I've noticed that whenever native python is running any automation script (like PyAutoGui) it progressively gets slower and slower, almost as if it's being throttled.
I created an environment with Miniforge3 that is able to…

Giuseppe Marziano
- 125
- 1
- 7
4
votes
2 answers
Python: How to solve the numpy ImportError on Apple Silicon?
I installed my python virtual environment on m1 AppleSilicon through miniforge3.
after execute conda -create py39 numpy matplotlib pandas python=3.9
I checked through conda list, numpy package had installed.
But when I did import numpy as np the…

Frank Qin
- 41
- 1
- 3
3
votes
1 answer
What's happening when I use miniforge with pyenv?
I'm struggling to find any documentation on this.
I started using pyenv a while back on my M1 Mac to manage python versions.
Recently I had some issues getting tensorflow installed, so followed some instructions online which recommended using…
user14380579
3
votes
1 answer
ERROR: CONDA_BUILD_SYSROOT or SDKROOT has to be set for cross-compiling when running the terminal
so my issue is that when I run the terminal on a MacBook Pro M1, after installing the miniforge3 & Conda, whenever I run the terminal the first thing that appears is this:
Last login: Thu Jul 1 15:36:59 on ttys000
ERROR: CONDA_BUILD_SYSROOT or…

Hanna S
- 121
- 4
2
votes
2 answers
Snakemake/miniforge: Nothing provides libgcc-ng >=12 needed by freebayes-1.3.6-hbfe0e7f_2
I am running a Snakemake NGS data analysis pipeline, one rule uses Freebayes, it's env looks like this:
name: freebayes
channels:
- bioconda
dependencies:
- freebayes=1.3.6
While creating the env this error occurs:
Building DAG of jobs...
Your…

Freek
- 1,097
- 2
- 12
- 30
2
votes
0 answers
ModuleNotFoundError: No module named 'numpy.random.bit_generator' while importing sklearn
I installed opencv, tensorflow and other tools on my Macbook M1 air by watching this tutorial:
After installing, opencv and tensorflow works fine but when I try to import sklearn the mentioned error occurs. Here is the Error:
File…

Zahid Sakib
- 61
- 5
2
votes
1 answer
Confusion about conda distributions/channels on arm processor
I've been using Anaconda for a few years now, but since I started using a Mac with a M1 processor I had to deal with a bunch of problem with the installation of some packages, which left me a little confused about some basic concepts.
For example, I…

Carlo
- 1,321
- 12
- 37
2
votes
1 answer
How to install pystan on miniforge for Mac M1?
I have a 2020 Mac M1 running Miniforge3-MacOSX-arm64 for Apple Silicon. I have tried pip install pystan and gets the following error
error: legacy-install-failure
× Encountered error while trying to install package. ╰─> pystan
I have also tried…

slcao
- 21
- 1
2
votes
0 answers
'zsh: killed : conda' after adding it to path
I am new to Mac, and I have just installed miniforge from conda-forge and then added the following line to my .zshrc file in the home directory.
export PATH=“/Users/myusername/miniforge3/bin:$PATH”
After this, every time I open the terminal and…

AnonymousMe
- 509
- 1
- 5
- 18
1
vote
0 answers
How to export a conda environment (not the yml file but all the binaries so conda doesn't solve anything)
The question
With miniconda, miniforge or Mambaforge (not Anaconda), is there a way to export an environment you have created with conda/mamba? I do not mean exporting a yml file, I mean exporting all the binaries.
Why I'm asking it
I am well aware…

Pythonista anonymous
- 8,140
- 20
- 70
- 112
1
vote
0 answers
How to install miniforge3 to python 3.11.x?
I upgraded my python version to 3.11. I tried to install miniforge3.
On the website,
miniforge3;
I can't find references to python 3.11.x.
Guide me on to install it!
I follow the instructions on the site:
/miniforge-setup

HerClau
- 161
- 2
- 15
1
vote
0 answers
Resolving duplicate miniforge installs on Mac
I am having issues understanding the current setup of conda environment managers on my machine.
I originally installed the conda package manager from miniforge using homebrew. I setup a few environments and everything was working quite smoothly; the…

Egonomist
- 11
- 3
1
vote
0 answers
Python 3.7 in Conda env on M1
Trying to use Python3.7 in a new environment in Conda. I installed the x86_64 version of brew into the default location (/usr/bin) alongside the arm64 version (3.7 isn't available on arm64). I was able to install Python3.7 via the x86_64 brew, and…

Vijay Tripathi
- 71
- 3