□2018年のPythonプロジェクトのはじめかた - Qiita
https://qiita.com/sl2/items/1e503952b9506a0539ea
に刺激を受けて,pipenvの設定をまとめてみました.
公式ドキュメント
#インストール
####pipでinstall
pip install --user pipenv
pipenv --version
#必須コマンド
####Pipfileがない場合,Pipfileを作成
pipenv install
####必要に応じてライブラリをインストール
pipenv install **library**
####必要に応じてライブラリをuninstall
pipenv uninstall **library**
####環境をactivate
pipenv shell
####pipfileの[scripts]の中に実行コマンドを作成する
pipenv run **command**
#その他の重要コマンド
####show dependencies of python library
pipenv graph
####activate virtualenv
pipenv shell
####check security
pipenv check
####execute on virtual environment
pipenv run *comamnd*
command you make in pipfile [scripts]
start="python manage.py runserver "
####pipfile.lockからインストール
pipenv sync
####Pipenv環境自体の削除
pipenv --rm
####update
pipenv update
out of pipenv shell
exit
check the dependent package from one library
pipenv graph —reverse
環境構築時のError
ModuleNotFoundError: No module named ‘_sqlite3’
===>
sudo apt install libsqlite3-dev
pipenv --rm
pipenv install --python 3.6.5