7
2

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 1 year has passed since last update.

【Python】pipenvそのものをダウングレードする方法

Last updated at Posted at 2023-08-25

書いた動機

  1. Pythonでの開発環境セットアップ時に、持ち込んだPipfileどおりに環境が出来なかった
  2. どうやらeditableが無効になってるっぽい
  3. 同僚に話したらこんなissueを見つけてくれた。バグか・・・
  4. Pipenvをダウングレードしよう
  5. 「pipenv ダウングレード 」[ 検索 ]
  6. pipenvを用いたモジュールのダウングレード方法がめちゃくちゃHitしてPipenvそのもののダウングレード方法が見つからない
  7. 自力でやる
  8. メモがてら記事にする

環境

Python: 3.9.13
pip: 23.2.1
pipenv: 2023.8.23 → 2022.12.19

手順

v2023.8.23 から v2022.12.19への移行を例にします

  1. pipenvリポジトリのタグ一覧へアクセスする
  2. 今回の影響が出て無さそうなバージョンを探す(今回は2022.12.19)
  3. コマンドラインでpip install pipenv==v2022.12.19を打つ
  4. pip listPipenvのバージョンが変わってるか確認する

余談

「pip ダウングレード」[ 検索 ]でよかった
ちなみにこれで検索するとpip本体のダウングレード方法が一番上に出てくる

7
2
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
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?