Skip to content

Instantly share code, notes, and snippets.

@galcyurio
Last active July 15, 2017 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save galcyurio/8414902cb11b5e014bbfb3225fa4ec19 to your computer and use it in GitHub Desktop.
Save galcyurio/8414902cb11b5e014bbfb3225fa4ec19 to your computer and use it in GitHub Desktop.
python and pip zip version download guide

pip doesn't included in python 7zip version. So I searching and wandered around here and there. Finally, I installed pip in windows OS.

This guide for those who new to python and uses windows OS like me.

1. First, download python in this page python download link

You can download 2 types of python which are executable, web-based.__ The differences are here. Unzip this file and locate where you want.

2. Second, download get-pip.py here securely

# open powershell
curl https://bootstrap.pypa.io/get-pip.py -o .\get-pip.py

3. Thrid, let's download pip using get-pip.py file

python get-pip.py

If you done, nice. However in my case occurred an error...

Traceback (most recent call last):
  File "get-pip.py", line 20061, in <module>
    main()
  File "get-pip.py", line 194, in main
    bootstrap(tmpdir=tmpdir)
  File "get-pip.py", line 82, in bootstrap
    import pip
  File "<frozen importlib._bootstrap>", line 961, in _find_and_load
  File "<frozen importlib._bootstrap>", line 950, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 646, in _load_unlocked
  File "<frozen importlib._bootstrap>", line 616, in _load_backward_compatible
  ...

I found solution for this error here.

I hope it installed properly. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment