May-22-2020, 07:17 AM
Hello,
- Clean Python 3.8.3 installation on Windows 10: uninstalled any previous python versions and installed it using "install now" (without selecting "Add Python 3.8 to path")
- Cloned tbon project (https://github.com/gianmarialari/tbon.git)
- According to project author, tbon needs the following third-party libraries to run: parsimonious, midiutil, pytest. So I did this:
The same thing on linux works without any issue.
Just in case you need:
P.S. This is my first post here. Tried to follow the python forum rules but if I made any mistake please let me know.
- Clean Python 3.8.3 installation on Windows 10: uninstalled any previous python versions and installed it using "install now" (without selecting "Add Python 3.8 to path")
- Cloned tbon project (https://github.com/gianmarialari/tbon.git)
- According to project author, tbon needs the following third-party libraries to run: parsimonious, midiutil, pytest. So I did this:
Output:py -m pip install parsimonious
py -m pip install midiutil
py -m pip install pytest Now tbon should work but it doesn't. Here it is the output when I try to execute it:Error:C:\Users\Gianmaria\Documents\GitHub\tbon>py tbon.py
Traceback (most recent call last):
File "tbon.py", line 12, in <module>
from parser import MidiEvaluator
ImportError: cannot import name 'MidiEvaluator' from 'parser' (unknown location)Tried also with Python 3.8.1 (always on windows) without success.The same thing on linux works without any issue.
Just in case you need:
Output:C:\Users\Gianmaria\Documents\GitHub\tbon>py
Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', 'C:\\Users\\Gianmaria\\AppData\\Local\\Programs\\Python\\Python38\\python38.zip', 'C:\\Users\\Gianmaria\\AppData\\Local\\Programs\\Python\\Python38\\DLLs', 'C:\\Users\\Gianmaria\\AppData\\Local\\Programs\\Python\\Python38\\lib', 'C:\\Users\\Gianmaria\\AppData\\Local\\Programs\\Python\\Python38', 'C:\\Users\\Gianmaria\\AppData\\Local\\Programs\\Python\\Python38\\lib\\site-packages']
>>>Any suggestion?P.S. This is my first post here. Tried to follow the python forum rules but if I made any mistake please let me know.
