2024-01-01から1年間の記事一覧

AWSのCodeCommitの操作

AWS

CodeCommitでPushするまで 変更を全てステージングに追加 git add . 特定のファイルだけステージングに追加 git add example.txt コミット git commit -m "Add example.txt with a simple message" PUSH git pushステージングを解除 git restore --staged ex…

Poetryのコマンド

Poetyのコマンドは忘れがちなので、メモしておきます。 仮想環境にPythonをインストール 例えば、Python 3.9.8をインストールする場合。 pyenv install 3.9.8 pyenvを使用して、プロジェクトディレクトリでPython 3.9.8を使用する。 pyenv local 3.9.8 poetr…

pandasインストール時のエラー

表題の通り、Pandasを再インストール指定たら、下記のようなエラーが出ました。 AttributeError: partially initialized module 'pandas' has no attribute '_pandas_parser_CAPI' (most likely due to a circular import)多少難儀したので、解決方法をメモ…