12
14

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.

pyenv pipenv 関連コマンド一覧

Posted at

忘れないようにメモ。

##pyenv

//インストール可能なpythonのバージョン一覧
$ pyenv install --list

//pythonインストールコマンド
$ pyenv install (任意のバージョン)

//バージョンの設定(ローカルの場合、現在のdirに反映)
$ pyenv local (任意のバージョン)

//バージョンの設定(グローバルの場合、全体に反映)
$ pyenv global (任意のバージョン)

//バージョンの確認
$ python --version

//インストール済みバージョン一覧
$ pyenv versions

##pipenv

//パッケージのインストール
$ pipenv install (パッケージ名)

//パッケージのインストール(バージョン指定有)
$ pipenv install (パッケージ名)==(任意のバージョン)

//開発環境だけで使うパッケージをインストール
$ pipenv install --dev (パッケージ名)

//Python本体のバージョンを指定してインストール
$ pipenv --python (任意のバージョン)

//pipenvで作った環境内でshellを起動
$ pipenv shell

//仮想環境のpathを確認
$ pipenv --venv

//パッケージのセキュリティ脆弱性検出
$ pipenv check

//パッケージの依存グラフの表示
$ pipenv graph
$ pipenv graph --reverse

##アプリの起動/起動スクリプト[scripts]

//pipenv run startでsample.pyを起動する例
[scripts]
start = "python sample.py"

$ pipenv run start
12
14
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
12
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?