rounakbanik / generative-art-nft

A generative art library for NFT avatar and collectible projects.
MIT License
749 stars 369 forks source link

TypeError: 'module' object is not callable #1

Closed imartinez closed 3 years ago

imartinez commented 3 years ago

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.