You are probably used to the default usage of Setuptools, for example the following command installs the latest Django version into your python installation or currently active virtual environment:
easy_install django
Sometimes you might need to install a specific version of a module. This is an example of installing Django 1.3.3:
easy_install django==1.3.3
If you want to upgrade the existing installation to the latest version, you can do that with:
easy_install -U django
No comments:
Post a Comment