-2

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**
David Buck
  • 3,752
  • 35
  • 31
  • 35
abdo_ch
  • 1
  • 2

1 Answers1

1

ftplib is installed by default. You can immediately use import ftplib without installing anything.

c21253
  • 330
  • 4
  • 13