Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda Pymc Install

Tags:

anaconda

pymc

When attempting to install pymc via conda, I receive the following:

C:\Anaconda>conda install -c https://conda.binstar.org/pymc pymc Fetching package metadata: ... Error: No packages found matching: pymc

The install is from the pymc distribution page: https://binstar.org/pymc/pymc

My current version of anaconda is up to date:

C:\Anaconda>conda update --prefix C:\Anaconda anaconda Fetching package metadata: .. Solving package specifications: .# All requested packages already installed.

# packages in environment at C:\Anaconda:

#

anaconda 1.9.2 np18py27_0

So as a conda newbie, I'm not quite sure what I'm missing. Perhaps I have to authorize binstar first? (No proxy issues I believe.)

Much appreciate your suggestions!

like image 861
Gene Avatar asked Apr 13 '14 23:04

Gene


2 Answers

That build of pymc is only built for OS X 64-bit, Windows 32-bit, and Linux 64-bit (see https://binstar.org/pymc/pymc/2.3.2/files). I'm guessing you have Windows 64-bit. You should contact the pymc devs to see if they can build a 32-bit Windows version.

like image 150
asmeurer Avatar answered Sep 21 '22 15:09

asmeurer


Try using:

!conda install pymc --yes

It should work. The --yes here used to skip a pause.

like image 34
jouvorior Avatar answered Sep 23 '22 15:09

jouvorior