I still continue to have some error with python3:
/chapolin@chapolin-MS-7B89:~/jack-audio-tools-master$ python3
transport/timebase_master.py
Traceback (most recent call last):
File "transport/timebase_master.py", line 11, in <module>
import jack
ModuleNotFoundError: No module named 'jack'
/and/
chapolin@chapolin-MS-7B89:~/jack-audio-tools-master$ python3 setup.py
cmd --help
/usr/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown
distribution option: 'long_description_content_type'
warnings.warn(msg)
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: invalid command 'cmd'
/Philippe/
/
Le 03/10/2019 à 17:06, Christopher Arndt a écrit :
Am 03.10.19 um 17:03 schrieb Philippe GARCIA-ORTUNO:
I tried to do /python setup.py/ and /python
timebase_master.py/ in a
command line but I had some error message: for /python
timebase_master.py :/
python timebase_master.py
File "timebase_master.py", line 15
def __init__(self, name, *, bpm=120.0, beats_per_bar=4,
beat_type=4,
^
SyntaxError: invalid syntax
You need to use Python 3. You can install the scripts with "python3
setup.py install", but you can also just run timebase_master.p
directly from the root of project:
$ python3 transport/timebase_master.py --help
Chris
P.S. Please answer to the mailing list, not to me personally.