I’m looking for more documentation on the features and plugins available to us under the LTS license. In the LTS documentation on PyPi it mentions a plugin called tutor-monitor, but when I run
tutor lts install tutor-monitor
I get:
pip install --index-url=https://overhang.io/tutor/lts/repo/************************************/ironwood --extra-index-url=https://pypi.org/simple tutor-monitor
Looking in indexes: https://overhang.io/tutor/lts/repo/de47f45e-5d68-40e9-9fed-5fac3154385b/ironwood, https://pypi.org/simple
ERROR: Could not find a version that satisfies the requirement tutor-monitor (from versions: none)
ERROR: No matching distribution found for tutor-monitor
Traceback (most recent call last):
File "/Users/admin/.virtualenvs/tutor/bin/tutor", line 8, in <module>
sys.exit(main())
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/tutor/commands/cli.py", line 38, in main
cli() # pylint: disable=no-value-for-parameter
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/click/core.py", line 829, in __call__
return self.main(*args, **kwargs)
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/click/core.py", line 782, in main
rv = self.invoke(ctx)
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/click/core.py", line 1259, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/click/core.py", line 1259, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/click/core.py", line 1066, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/click/core.py", line 610, in invoke
return callback(*args, **kwargs)
File "/Users/admin/.virtualenvs/tutor/lib/python3.8/site-packages/click/decorators.py", line 33, in new_func
return f(get_current_context().obj, *args, **kwargs)
File "tutorlts/lts.pyx", line 156, in tutorlts.lts.install
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/subprocess.py", line 364, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['pip', 'install', '--index-url=https://overhang.io/tutor/lts/repo/de47f45e-5d68-40e9-9fed-5fac3154385b/ironwood', '--extra-index-url=https://pypi.org/simple', 'tutor-monitor']' returned non-zero exit status 1.
And some questions:
My understanding of the LTS was that Overhang would distribute patches and upgrades to the 3.x.x. releases of Tutor and “corresponding” Ironwood for two years after the release of Juniper. How do we access and install these through the Tutor CLI?
Sorry if I have missed some documentation on this?