Even though the current etmtk (3.2.38) serves my needs I gave
the new "etm-dgraham" (4.0.0b3) a try under Ubuntu 18.04 using
the python virtual environment "Installation" instructions at
https://github.com/dagraham/etm-dgrahamIt seems to work as advertised but fyi here are some issues
I had.
1. When I did: pip install -U etm-dgraham, I got:
ERROR: update 0.0.1 has requirement style==1.1.0, \
but you'll have style 1.1.6 which is incompatible.
2. When I ran "deactivate" (after I was done trying it), I got
bash: $1: unbound variable
Because I guess in "env/bin/activate"
if [ ! "$1" = "nondestructive" ] ; then
should be:
if [ ! "${1:-}" = "nondestructive" ] ; then
3. It wasn't immediately obvious to me that if wanted to
keep the virtual directory but restore my environment
($PATH) I needed to run "deactivate" and if I wanted
to use it again I just needed to go to the virtual
directory again and run "activate' again. A note about
what activate and deactivate do might be helpful.
4. It would have been helpful in the "editor" if the help
mentioned I needed to enter " @" when finished with the
summary to set the next field. (I had to bring up
the tutorial video to see what to do.)
5. Is there (or will there be) a tool to convert old .txt
data files to to the new db.json format? Is there
documentation for the new format?