Difference between revisions of "Installing Python pip on cygwin"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (Created page with "=Links= * https://pypi.python.org/pypi/pip * http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows Category:cygwin Category:Python") |
PeterHarding (talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
* https://pypi.python.org/pypi/pip | * https://pypi.python.org/pypi/pip | ||
* http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows | * http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows | ||
=Example= | |||
Get the get-pip.py script. | |||
<pre> | |||
Search Results | |||
get-pip.py | |||
https://bootstrap.pypa.io/get-pip.py | |||
Pip is a thing that installs packages, pip itself is a package that someone # might want to install, especially if they're looking to run this get-pip.py # script. Pip has ... | |||
</pre> | |||
<pre> | |||
$ ./get-pip.py | |||
Collecting pip | |||
Downloading pip-8.0.2-py2.py3-none-any.whl (1.2MB) | |||
100% |============================| 1.2MB 139kB/s | |||
Collecting wheel | |||
Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB) | |||
100% |=========================== 69kB 28kB/s | |||
Installing collected packages: pip, wheel | |||
Successfully installed pip-8.0.2 wheel-0.29.0 | |||
</pre> | |||
=Using pip= | |||
<pre> | |||
$ pip install pymssql | |||
Collecting pymssql | |||
Downloading pymssql-2.1.2.tar.gz (898kB) | |||
100% |████████████████████████████████| 901kB 134kB/s | |||
Building wheels for collected packages: pymssql | |||
Running setup.py bdist_wheel for pymssql ... done | |||
Stored in directory: /home/aasdev/.cache/pip/wheels/08/df/03/0c92949cb5ecc9002cb965d135f1dec326cb7881f3e0bb80be | |||
Successfully built pymssql | |||
Installing collected packages: pymssql | |||
Successfully installed pymssql-2.1.2 | |||
</pre> | |||
[[Category:cygwin]] | [[Category:cygwin]] | ||
[[Category:Python]] | [[Category:Python]] |
Latest revision as of 11:09, 3 October 2016
Links
- https://pypi.python.org/pypi/pip
- http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows
Example
Get the get-pip.py script.
Search Results get-pip.py https://bootstrap.pypa.io/get-pip.py Pip is a thing that installs packages, pip itself is a package that someone # might want to install, especially if they're looking to run this get-pip.py # script. Pip has ...
$ ./get-pip.py Collecting pip Downloading pip-8.0.2-py2.py3-none-any.whl (1.2MB) 100% |============================| 1.2MB 139kB/s Collecting wheel Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB) 100% |=========================== 69kB 28kB/s Installing collected packages: pip, wheel Successfully installed pip-8.0.2 wheel-0.29.0
Using pip
$ pip install pymssql Collecting pymssql Downloading pymssql-2.1.2.tar.gz (898kB) 100% |████████████████████████████████| 901kB 134kB/s Building wheels for collected packages: pymssql Running setup.py bdist_wheel for pymssql ... done Stored in directory: /home/aasdev/.cache/pip/wheels/08/df/03/0c92949cb5ecc9002cb965d135f1dec326cb7881f3e0bb80be Successfully built pymssql Installing collected packages: pymssql Successfully installed pymssql-2.1.2