Issue
I want to install the ftplib
package on Ubuntu, but I got the following error!
ubuntu@ubuntu:~$ sudo pip3 install ftplib
**ERROR: Could not find a version that satisfies the requirement ftplib (from versions: none)
ERROR: No matching distribution found for ftplib**
Solution
ftplib is installed by default. You can immediately use import ftplib
without installing anything.
Answered By - c21253 Answer Checked By - Mary Flores (WPSolving Volunteer)