tuffnatty / xsd_to_django_model

Generate Django models from an XSD schema description (and a bunch of hints)
GNU General Public License v3.0
25 stars 11 forks source link

ndifflib not installed #15

Open flaviol opened 2 weeks ago

flaviol commented 2 weeks ago

with Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)] on win32 pip 24.2 from C:\PythonVenv\myenv\lib\site-packages\pip (python 3.9)

(myenv) PS C:\Sviluppo\myprj\code> pip install xsd-to-django-model Collecting xsd-to-django-model Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Collecting docopt (from xsd-to-django-model) Downloading docopt-0.6.2.tar.gz (25 kB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Requirement already satisfied: xmlschema in c:\pythonvenv\myenv\lib\site-packages (from xsd-to-django-model) (3.4.0) Requirement already satisfied: elementpath<5.0.0,>=4.4.0 in c:\pythonvenv\myenv\lib\site-packages (from xmlschema->xsd-to-django-model) (4.5.0) Building wheels for collected packages: xsd-to-django-model, docopt Building wheel for xsd-to-django-model (pyproject.toml) ... done Created wheel for xsd-to-django-model: filename=xsd_to_django_model-1.1.0-py3-none-any.whl size=41557 sha256=e2f15417e558a93ad72a9810615957fda47c32ccb7a9917c150a3ffd9e34985c Stored in directory: c:\users\me\appdata\local\pip\cache\wheels\51\54\43\363ebe5788cf3bebc01d6dcfa47116364dfbde76446b679993 7a9917c150a3ffd9e34985c Building wheel for docopt (pyproject.toml) ... done Created wheel for docopt: filename=docopt-0.6.2-py2.py3-none-any.whl size=13775 sha256=5dcb66eab49f55eb622c74790fecd76a0beb0cc808f8d123e382e14b5ed9f175 5 Stored in directory: c:\users\me\appdata\local\pip\cache\wheels\70\4a\46\1309fc853b8d395e60bafaf1b6df7845bdd82c95fd59dd8d2b Successfully built xsd-to-django-model docopt Installing collected packages: docopt, xsd-to-django-model Successfully installed docopt-0.6.2 xsd-to-django-model-1.1.0

_(myenv) PS C:\Sviluppo\myprj\code> xsd_to_djangomodel.py -h Traceback (most recent call last): File "C:\PythonVenv\myenv\Scripts\xsd_to_djangomodel.py", line 42, in import ndifflib ModuleNotFoundError: No module named 'ndifflib' (myenv) PS C:\Sviluppo\myprj\code> pip install ndifflib_ Collecting ndifflib Downloading ndifflib-0.1.0-py2.py3-none-any.whl.metadata (1.3 kB) Downloading ndifflib-0.1.0-py2.py3-none-any.whl (3.4 kB) Installing collected packages: ndifflib Successfully installed ndifflib-0.1.0 (marbletraceve) PS C:\Sviluppo\marbletrace\code> xsd_to_django_model.py -h xsd_to_django_model Generate Django models from an XSD schema description (and a bunch of hints).

Usage: ....

I hope it's my mistake or to be helpfull best regards Flavio