cloudmesh / client

Deprecated: Version 3 of cloudmesh is a light weight cloud client to manage virtual clusters
http://cloudmesh.github.io/client
Other
3 stars 12 forks source link

Ubuntu and CentOS Setup: wget of ez_setup.py 404 error #245

Open mmccombe opened 7 years ago

mmccombe commented 7 years ago
ISSUE TYPE

When running the command below:

wget --no-check-certificate https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py

Which is specified in the setup documentation for both Ubuntu and CentOS on the following page:

http://cloudmesh.github.io/client/system.html

A 404 error is received (full error below)

SUGGESTED SOLUTION

I found that setuptools had been moved from bitbucket to github. I was able to run the following command successfully to retrieve ez_setup.py.

wget --no-check-certificate https://github.com/pypa/setuptools/blob/master/setup.py

The bitbucket page documenting the move from bitbucket to github is below:

https://bitbucket.org/pypa/setuptools

FULL ERROR MESSAGE

--2016-10-04 11:42:17-- https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py Resolving bitbucket.org (bitbucket.org)... 104.192.143.3, 104.192.143.2, 104.192.143.1, ... Connecting to bitbucket.org (bitbucket.org)|104.192.143.3|:443... connected. HTTP request sent, awaiting response... 404 NOT FOUND 2016-10-04 11:42:18 ERROR 404: NOT FOUND.

TEST RESULTS OF PROPOSED SOLUTION

(ENV) mark@mark-VirtualBox:~$ wget --no-check-certificate https://github.com/pypa/setuptools/blob/master/setup.py --2016-10-04 12:03:02-- https://github.com/pypa/setuptools/blob/master/setup.py Resolving github.com (github.com)... 192.30.253.112 Connecting to github.com (github.com)|192.30.253.112|:443... connected. HTTP request sent, awaiting response... 200 OK Length: unspecified [text/html] Saving to: ‘setup.py’

setup.py [ <=> ] 162.48K --.-KB/s in 0.1s

2016-10-04 12:03:02 (1.27 MB/s) - ‘setup.py’ saved [166380]