GAMPTeam / vampyre

Approximate Message Passing in Python
MIT License
65 stars 28 forks source link

Proper pip package #11

Open CBockelmann opened 3 years ago

CBockelmann commented 3 years ago

I'm currently using your work to illustrate cs algorithms via jupyter notebooks. However, the installation of your code is not as straightforward as it could be. Currently, you need to install via

pip install -e .

or it wont work, because pip does not copy any files. Please fix the setup.py such that one can simply do

pip install git+https://github.com/GAMPTeam/vampyre.git

This would enable simple installation also directly via juptyer magic like

%pip install https://github.com/GAMPTeam/vampyre.git

In a notebook to run notebook files anywhere (like the nbviewer public service)