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

How to install wsql via python pip




wsql - Asynchronous Python interface to MySQL, it belongs to Classifiers:

- Environment :: Other Environment
- License :: OSI Approved :: GNU General Public License (GPL)
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: POSIX :: Linux
- Programming Language :: C
- Topic :: Database
- Topic :: Database :: Database Engines/Servers

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



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_wsql_env

- Active the virtual environment

test_wsql_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_wsql_env

- Active the virtual environment

source test_wsql_env/bin/active


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

To install wsql on Windows(CMD):

py -m pip install wsql

To install wsql on Unix/macOs:

pip install wsql


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

Example:

pip install wsql==1.2.2


Please see the version list below table:

VersionReleased dateCommand
wsql 1.2.132016-03-04T10:02:03Windows:

py -m pip install wsql==1.2.13

Unix/macOs:

pip install wsql==1.2.13

wsql 1.2.122016-02-27T00:39:38Windows:

py -m pip install wsql==1.2.12

Unix/macOs:

pip install wsql==1.2.12

wsql 1.2.112016-01-29T16:07:29Windows:

py -m pip install wsql==1.2.11

Unix/macOs:

pip install wsql==1.2.11

wsql 1.2.102016-01-27T21:35:01Windows:

py -m pip install wsql==1.2.10

Unix/macOs:

pip install wsql==1.2.10

wsql 1.2.92016-01-09T20:17:33Windows:

py -m pip install wsql==1.2.9

Unix/macOs:

pip install wsql==1.2.9

wsql 1.2.82016-01-08T21:01:23Windows:

py -m pip install wsql==1.2.8

Unix/macOs:

pip install wsql==1.2.8

wsql 1.2.72016-01-01T22:06:05Windows:

py -m pip install wsql==1.2.7

Unix/macOs:

pip install wsql==1.2.7

wsql 1.2.62015-12-20T20:40:03Windows:

py -m pip install wsql==1.2.6

Unix/macOs:

pip install wsql==1.2.6

wsql 1.2.52015-07-08T07:59:13Windows:

py -m pip install wsql==1.2.5

Unix/macOs:

pip install wsql==1.2.5

wsql 1.2.42015-07-08T07:33:33Windows:

py -m pip install wsql==1.2.4

Unix/macOs:

pip install wsql==1.2.4

wsql 1.2.32015-07-08T07:20:04Windows:

py -m pip install wsql==1.2.3

Unix/macOs:

pip install wsql==1.2.3

wsql 1.2.22015-06-28T14:18:31Windows:

py -m pip install wsql==1.2.2

Unix/macOs:

pip install wsql==1.2.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_wsql_downloaded_file>

On Unix/macOs:

pip install <path_to_wsql_downloaded_file>


List distribution:


Project link:

- Homepage
- Download