チーム全体でPythonの環境設定と依存関係を同期するためのリポジトリです。pyenvの設定、Poetryのロックファイル、シェルの設定が含まれています。
A repository for syncing Python environment configurations and dependencies across the team. Includes pyenv settings, Poetry lock files, and shell configurations.
git clone git@github.com:tsutomu-n/Python_Env_Sync_Repo.git
cd Python_Env_Sync_Repo/backup_folder
python restore_environment.py
このスクリプトは以下を行います(This script will):
- pyenvを使用して適切なPythonバージョンをインストール(Install the appropriate Python version using pyenv)。
- Poetryを使用して依存関係をインストール(Install dependencies using Poetry)。
.zshrc
と.zshenv
ファイルをホームディレクトリにコピー(Copy.zshrc
and.zshenv
files to your home directory)。- 新しい設定を適用するために
.zshrc
をソース(Source the.zshrc
to apply new settings)。
pyenv
とpoetry
がマシンにインストールされていることを確認してください(Make sure you havepyenv
andpoetry
installed on your machine)。- このスクリプトは既存の
.zshrc
と.zshenv
ファイルを上書きします。スクリプトを実行する前に既存のファイルのバックアップを取ってください(This script will overwrite existing.zshrc
and.zshenv
files. Please backup your existing files before running the script)。