0

を使用してrequirements.txtファイルを作成しましたpip freeze --local

今、私がするとき:pip install -r requirements.txt

古いバージョンの上に新しいdjangoをインストールします。次に、次のメッセージが表示されます。

========
WARNING!
========

You have just installed Django over top of an existing
installation, without removing it first. Because of this,
your install may now include extraneous files from a
previous version that have since been removed from
Django. This is known to cause a variety of problems. You
should manually remove the

/usr/local/lib/python2.7/site-packages/django

directory and re-install Django.

古いバージョンがインストールされている場合は、アップグレードを行いたいです。どうすればそれを管理できますか?

4

2 に答える 2

-2

これでうまくいくはずです:

pip install --upgrade django
于 2013-09-04T19:12:18.120 に答える