瀏覽代碼

Vagrantfile: cygwin: Fix installation of pip.

cygwin is at python-3.6 now. Use version-independent `ensurepip`
to be future-proof.
Hartmut Goebel 8 年之前
父節點
當前提交
045a676825
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -219,7 +219,7 @@ end
 
 def install_cygwin_venv
   return <<-EOF
-      easy_install-3.4 pip
+      python3 -m ensurepip -U --default-pip
       pip install virtualenv
   EOF
 end