Hacking CDNSP-GUI on ubuntu ?

  • Thread starter Thread starter mohalz
  • Start date Start date
  • Views Views 3,195
  • Replies Replies 7
It's written in Python. Should be no problem.

i know and i get this when i try to run it using python3

Traceback (most recent call last):
File "CDNSP-GUI-Bob-v3.5.1.py", line 11, in <module>
from tkinter import *
ModuleNotFoundError: No module named 'tkinter'
 
The gui module is missing. Just install it with sudo apt-get install python3-tk.
If the gui is written in Python 2, try sudo apt-get install python-tk.
 
Last edited by Taorn,
  • Like
Reactions: mohalz
i did and now i got this


Checking if all required modules are installed!


Traceback (most recent call last):
File "CDNSP-GUI-Bob-v3.5.1.py", line 50, in <module>
from tqdm import tqdm
ModuleNotFoundError: No module named 'tqdm'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "CDNSP-GUI-Bob-v3.5.1.py", line 53, in <module>
from tqdm import tqdm
ModuleNotFoundError: No module named 'tqdm'
 
You should really search in StackOverflow; you will find the answer there faster than waiting for someone to reply here.
Anyway, try sudo apt-get install python3-tqdm for Py3 or sudo apt-get install python-tqdm for Py2.
 
Last edited by AboodXD,
  • Like
Reactions: mohalz
Another module is missing. Install it with pip install tqdm. If another module is missing after that, you can search for it on https://pypi.org/. Just copy & paste the name of the missing module. Also you should take a look at the README of CDNSP-GUI. There is probably a listing of the dependencies you need to install.
 
  • Like
Reactions: mohalz
You should really search in StackOverflow; you will find the answer there faster than waiting for someone to reply here.
Anyway, try sudo apt-get install python3-tqdm of Py3 or sudo apt-get install python-tqdm for Py2.
thank you it workedd

--------------------- MERGED ---------------------------

Another module is missing. Install it with pip install tqdm. If another module is missing after that, you can search for it on https://pypi.org/. Just copy & paste the name of the missing module. Also you should take a look at the README of CDNSP-GUI. There is probably a listing of the dependencies you need to install.
thank you very much it worked :))

--------------------- MERGED ---------------------------

python3-tqdm that what was missing
 

Site & Scene News

Popular threads in this forum