Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document how to use bootloader #59

Open
xobs opened this issue Sep 29, 2019 · 1 comment
Open

Document how to use bootloader #59

xobs opened this issue Sep 29, 2019 · 1 comment

Comments

@xobs
Copy link

xobs commented Sep 29, 2019

While the protocol is well-documented, there is no documentation on how to use it.

In the programmer directory it says to run tinyprog -l, however it doesn't say how to use tinyprog.

There is a setup.py, however it doesn't work:

❯ python .\setup.py
Traceback (most recent call last):
File ".\setup.py", line 4, in <module>
    from setuptools import setup, find_packages
ModuleNotFoundError: No module named 'setuptools'

There is a directory called tinyprog, and surprisingly Python seems to recognize this, however it doesn't work either:

❯ python tinyprog
Traceback (most recent call last):
File "D:\obj\Windows-Release\37amd64_Release\msi_python\zip_amd64\runpy.py", line 193, in _run_module_as_main
  File "D:\obj\Windows-Release\37amd64_Release\msi_python\zip_amd64\runpy.py", line 85, in _run_code
  File "tinyprog\__main__.py", line 10, in <module>
    from six.moves.urllib.request import urlopen
ModuleNotFoundError: No module named 'six'
@marcan
Copy link

marcan commented Oct 2, 2019

It's telling you you don't have setuptools installed. setuptools is required to run setup.py for many, if not the majority, of setup.py scripts out there.

This is all completely standard fare for installing Python packages, it shouldn't be particularly surprising or hard to figure out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants