0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CygwinへのPipインストールめも

Posted at

##apt-cygのインストール
apt-cygは正規版じゃないとダメっぽい。エラーでる。

以下、cygwinのコンソール内で
# ↓正規版。開発終了したらしい。
wget https://raw.githubusercontent.com/transcode-open/apt-cyg/master/apt-cyg
# 参照:https://github.com/transcode-open/apt-cyg/blob/master/status.md

・実行権限をつけてPATHの通っている場所に置く

chmod 755 apt-cyg
mv apt-cyg /usr/local/bin/

・国内のリポジトリから更新するようにする

apt-cyg -m ftp://ftp.iij.ad.jp/pub/cygwin/ update

##pipインストール

# 2系のpip
apt-cyg install python-pip
apt-cyg install python2-pip
# 3系のpip
apt-cyg install python3-pip

#これでもイケる?
python -m ensurepip

##aliasあてる

sed -i '$a alias pip='\''python -m pip'\' ~/.bashrc
source ~/.bashrc
pip --version
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?