Tanay Suthar
Tanay Suthar

Reputation: 453

Unable to download python packages in python 3.4

Here is the installation procedure

C:\Python34>python -m pip install simplegui
Downloading/unpacking simplegui
  Cannot fetch index base URL https://pypi.python.org/simple/
  Could not find any downloads that satisfy the requirement simplegui
Cleaning up...
No distributions at all found for simplegui
Storing debug log for failure in C:\Users\Tanay\pip\pip.log

What would be the exact solution to download python package ?

Upvotes: 0

Views: 236

Answers (2)

Terry Jan Reedy
Terry Jan Reedy

Reputation: 19174

simplegui is listed on the Py Package Index, but does not seem to have been uploaded to pypi. The listing refers to the simplegui page, which in turn has a link to a zip file that one must download, unzip, and install.

Upvotes: 1

user14241
user14241

Reputation: 748

Not enough rep to comment, but if you can download the package you need, you can still install it using pip as

pip install <path to package folder you downloaded>

If you run into any problems with a 2.x package you can always try 2to3 to make the package compatible with 3.x.

Upvotes: 0

Related Questions