Using python 3.9.7, I got this error while running python3 nft.py
Traceback (most recent call last): File "/Users/imartinez/Documents/Dev/crypto/generative-art-nft/nft.py", line 237, in <module> main() File "/Users/imartinez/Documents/Dev/crypto/generative-art-nft/nft.py", line 228, in main rt = generate_images(edition_name, num_avatars) File "/Users/imartinez/Documents/Dev/crypto/generative-art-nft/nft.py", line 163, in generate_images for n in pb(range(count)): TypeError: 'module' object is not callable
After checking stackoverflow I found this similar issue
Fix:
I pip install progressbar2 along with the rest of dependencies and everything worked perfectly.
Using python 3.9.7, I got this error while running
python3 nft.py
Traceback (most recent call last): File "/Users/imartinez/Documents/Dev/crypto/generative-art-nft/nft.py", line 237, in <module> main() File "/Users/imartinez/Documents/Dev/crypto/generative-art-nft/nft.py", line 228, in main rt = generate_images(edition_name, num_avatars) File "/Users/imartinez/Documents/Dev/crypto/generative-art-nft/nft.py", line 163, in generate_images for n in pb(range(count)): TypeError: 'module' object is not callable
After checking stackoverflow I found this similar issue
Fix: I
pip install progressbar2
along with the rest of dependencies and everything worked perfectly.