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

How to install sat via python pip




sat - Salut à Toi multipurpose and multi frontend XMPP client, it belongs to Classifiers:

- Framework :: Twisted
- License :: OSI Approved :: GNU Affero General Public License v3
- License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
- Operating System :: POSIX :: Linux
- Topic :: Communications
- Topic :: Communications :: Chat

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



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_sat_env

- Active the virtual environment

test_sat_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_sat_env

- Active the virtual environment

source test_sat_env/bin/active


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

To install sat on Windows(CMD):

py -m pip install sat

To install sat on Unix/macOs:

pip install sat


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

Example:

pip install sat==0.3.0


Please see the version list below table:

VersionReleased dateCommand
sat 0.7.02019-07-24T18:13:28Windows:

py -m pip install sat==0.7.0

Unix/macOs:

pip install sat==0.7.0

sat 0.6.1.12016-07-13T08:58:37Windows:

py -m pip install sat==0.6.1.1

Unix/macOs:

pip install sat==0.6.1.1

sat 0.6.12016-07-13T08:52:40Windows:

py -m pip install sat==0.6.1

Unix/macOs:

pip install sat==0.6.1

sat 0.5.12014-09-18T09:50:34Windows:

py -m pip install sat==0.5.1

Unix/macOs:

pip install sat==0.5.1

sat 0.5.02014-09-09T06:16:17Windows:

py -m pip install sat==0.5.0

Unix/macOs:

pip install sat==0.5.0

sat 0.4.12014-02-28T14:04:54Windows:

py -m pip install sat==0.4.1

Unix/macOs:

pip install sat==0.4.1

sat 0.4.02014-02-26T13:40:41Windows:

py -m pip install sat==0.4.0

Unix/macOs:

pip install sat==0.4.0

sat 0.3.02013-01-09T22:11:37Windows:

py -m pip install sat==0.3.0

Unix/macOs:

pip install sat==0.3.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sat_downloaded_file>

On Unix/macOs:

pip install <path_to_sat_downloaded_file>


List distribution:


Project link:

- Homepage