Skip to content

Instantly share code, notes, and snippets.

@michaelosthege
Last active August 10, 2020 10:21
Show Gist options
  • Save michaelosthege/b95d57ae8817eb1cfd19aa30beac2da6 to your computer and use it in GitHub Desktop.
Save michaelosthege/b95d57ae8817eb1cfd19aa30beac2da6 to your computer and use it in GitHub Desktop.
pymc3-installation
conda create -n pm3 python=3.7 pandas jupyter matplotlib mkl-service libpython m2w64-toolchain coverage xlrd openpyxl scipy -y
activate pm3
# install last release from PyPI
pip install pymc3
# or latest version directly from master:
pip install git+https://github.com/pymc-devs/pymc3
# or from master in editable mode:
git clone https//github.com/pymc-devs/pymc3 pymc3
cd pymc3
pip install -e .
# optional:
conda install -c conda-forge python-graphviz
pip install pydot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment