Python
November 3, 2017
Using Pipenv with Systemd
So I’ve been doing a bit of Python recently for a project I’m working on on a
Raspberry Pi. There will be a longer blog post about that in the next few weeks.
But one thing I ran up against was that I wanted to start my daemon, written in
Python, using a systemd service on Raspbian.
Normally, you would just shove a script invocation into a systemd unit and call
it good, but in my case I had made use of Pipenv,
which is a bit like Bundler in the Ruby world and Composer in the PHP world, to
manage my project’s dependencies.
Read More