Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install South via python pip




South - South: Migrations for Django, it belongs to Classifiers:

- Framework :: Django
- Intended Audience :: System Administrators
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.3

When you know about this project and you want to new install South to support your project or you get trouble as ModuleNotFoundError: No module named "South" or ImportError: cannot import name "South" in your project, let follow this tutorial to install South



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_South_env

- Active the virtual environment

test_South_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_South_env

- Active the virtual environment

source test_South_env/bin/active


Step 2: OK, now, let flow below content to start the installation South

To install South on Windows(CMD):

py -m pip install South

To install South on Unix/macOs:

pip install South


Step 3: If you want to install a specific South version, add ==<South version> to the end command line

Example:

pip install South==0.4


Please see the version list below table:

VersionReleased dateCommand
South 1.0.22014-12-23T09:52:26Windows:

py -m pip install South==1.0.2

Unix/macOs:

pip install South==1.0.2

South 1.0.12014-10-27T00:18:54Windows:

py -m pip install South==1.0.1

Unix/macOs:

pip install South==1.0.1

South 1.02014-07-01T07:01:12Windows:

py -m pip install South==1.0

Unix/macOs:

pip install South==1.0

South 0.8.42013-11-21T10:39:12Windows:

py -m pip install South==0.8.4

Unix/macOs:

pip install South==0.8.4

South 0.8.32013-11-13T13:16:31Windows:

py -m pip install South==0.8.3

Unix/macOs:

pip install South==0.8.3

South 0.8.22013-08-09T14:50:03Windows:

py -m pip install South==0.8.2

Unix/macOs:

pip install South==0.8.2

South 0.8.12013-05-23T12:49:41Windows:

py -m pip install South==0.8.1

Unix/macOs:

pip install South==0.8.1

South 0.82013-05-22T12:06:26Windows:

py -m pip install South==0.8

Unix/macOs:

pip install South==0.8

South 0.7.62012-08-02T10:24:55Windows:

py -m pip install South==0.7.6

Unix/macOs:

pip install South==0.7.6

South 0.7.52012-05-08T16:25:02Windows:

py -m pip install South==0.7.5

Unix/macOs:

pip install South==0.7.5

South 0.7.42012-03-23T18:50:46Windows:

py -m pip install South==0.7.4

Unix/macOs:

pip install South==0.7.4

South 0.7.32010-12-01T20:49:14Windows:

py -m pip install South==0.7.3

Unix/macOs:

pip install South==0.7.3

South 0.7.22010-08-13T15:27:45Windows:

py -m pip install South==0.7.2

Unix/macOs:

pip install South==0.7.2

South 0.7.12010-05-21T20:38:26Windows:

py -m pip install South==0.7.1

Unix/macOs:

pip install South==0.7.1

South 0.72010-03-25T20:07:32Windows:

py -m pip install South==0.7

Unix/macOs:

pip install South==0.7

South 0.6.22009-10-26T22:27:20Windows:

py -m pip install South==0.6.2

Unix/macOs:

pip install South==0.6.2

South 0.6.12009-09-05T14:19:26Windows:

py -m pip install South==0.6.1

Unix/macOs:

pip install South==0.6.1

South 0.62009-08-11T20:48:43Windows:

py -m pip install South==0.6

Unix/macOs:

pip install South==0.6

South 0.52009-04-29T12:10:26Windows:

py -m pip install South==0.5

Unix/macOs:

pip install South==0.5

South 0.42009-01-13T11:28:58Windows:

py -m pip install South==0.4

Unix/macOs:

pip install South==0.4


Step 4: Otherwise, you can install South from local archives:

Download the distribution file from South-1.0.2.tar.gz or the specific South version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_South_downloaded_file>

On Unix/macOs:

pip install <path_to_South_downloaded_file>


List distribution:


Project link:

- Homepage
- Download