0

I'm doing a Udemy course using Python, and I recently created a fresh copy of Raspian for my Raspbery Pi 3B+. I have attempted to install the module pyfiglet, and used the terminal command sudo pip install pyfiglet. However, when I attempt to use it using the IDE Thonny, I get a syntax error saying that the module doesn't exist.

I'm assuming I'd need to install the module to PATH. How would I do this?

asked May 14, 2020 at 8:55

1 Answer 1

1

You tagged with python-3 but with sudo pip install pyfiglet you installed for python2, which is out of any support now. Just install it for python3 with:

rpi ~$ sudo pip3 install pyfiglet
answered May 14, 2020 at 11:45
0

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.