I get "Getting requirements to build wheel did not run successfully" when I try to pip3 install pymc3

699 Views Asked by At

I need to use the module pymc3, but when I try to install it, I get the following error :

error printed screen I've tried to install pymc to see if it makes a difference, but it doesn't. My python version is 3.12. Any suggestion to solve this problem ? Thank you!

3

There are 3 best solutions below

1
WickedWebby On

Does this work?

py -m pip install pymc3
1
Sh4ark On

Try to activate scripts in python enviromment with

myenv\Scripts\activate

python3 -m pip install --upgrade pip

pip install pymc3

If you still encounter errors, it may be due to missing packages. Try installing the following packages:

pip install numpy scipy matplotlib pandas

*You should paste the error text in console , don't put images

0
Anaelle Wurm On

I found a solution. When I downgrade to Python 3.11.7, it works. Thanks everyone.