4
3

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 5 years have passed since last update.

CentOS 7にPython 3とpipenvをインストール

Posted at

Python 3のインストール

Python 3はEPELリポジトリからインストールできる。

# yum install epel-release
# yum install python3

pipがpip3という名前でインストールされることに注意。

$ python3 --version
Python 3.6.8
$ pip3 --version
pip 9.0.3 from /usr/lib/python3.6/site-packages (python 3.6)

pipenvのインストール

$ pip3 install --user pipenv
$ pipenv --version
pipenv, version 2018.11.26
4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?