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

How to install CUBRID-Python via python pip




CUBRID-Python - This is a Python Connector for CUBRID Database 9.3.0, it belongs to Classifiers:

- Environment :: Other Environment
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft :: Windows :: Windows NT/2000
- Programming Language :: C
- Topic :: Database
- Topic :: Database :: Database Engines/Servers

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



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_CUBRID-Python_env

- Active the virtual environment

test_CUBRID-Python_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_CUBRID-Python_env

- Active the virtual environment

source test_CUBRID-Python_env/bin/active


Step 2: OK, now, let flow below content to start the installation CUBRID-Python

To install CUBRID-Python on Windows(CMD):

py -m pip install CUBRID-Python

To install CUBRID-Python on Unix/macOs:

pip install CUBRID-Python


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

Example:

pip install CUBRID-Python==0.5.2


Please see the version list below table:

VersionReleased dateCommand
CUBRID-Python 9.3.02014-05-15T10:25:39Windows:

py -m pip install CUBRID-Python==9.3.0

Unix/macOs:

pip install CUBRID-Python==9.3.0

CUBRID-Python 9.2.02013-09-27T06:33:16Windows:

py -m pip install CUBRID-Python==9.2.0

Unix/macOs:

pip install CUBRID-Python==9.2.0

CUBRID-Python 9.1.02013-03-15T11:45:48Windows:

py -m pip install CUBRID-Python==9.1.0

Unix/macOs:

pip install CUBRID-Python==9.1.0

CUBRID-Python 9.0.02012-10-16T01:29:28Windows:

py -m pip install CUBRID-Python==9.0.0

Unix/macOs:

pip install CUBRID-Python==9.0.0

CUBRID-Python 8.4.32012-11-16T06:49:13Windows:

py -m pip install CUBRID-Python==8.4.3

Unix/macOs:

pip install CUBRID-Python==8.4.3

CUBRID-Python 8.4.12012-02-06T08:06:05Windows:

py -m pip install CUBRID-Python==8.4.1

Unix/macOs:

pip install CUBRID-Python==8.4.1

CUBRID-Python 8.4.02011-05-23T08:22:52Windows:

py -m pip install CUBRID-Python==8.4.0

Unix/macOs:

pip install CUBRID-Python==8.4.0

CUBRID-Python 0.5.42010-12-23T06:03:57Windows:

py -m pip install CUBRID-Python==0.5.4

Unix/macOs:

pip install CUBRID-Python==0.5.4

CUBRID-Python 0.5.32010-12-06T07:24:42Windows:

py -m pip install CUBRID-Python==0.5.3

Unix/macOs:

pip install CUBRID-Python==0.5.3

CUBRID-Python 0.5.22010-12-03T09:46:08Windows:

py -m pip install CUBRID-Python==0.5.2

Unix/macOs:

pip install CUBRID-Python==0.5.2


Step 4: Otherwise, you can install CUBRID-Python from local archives:

Download the distribution file from cubrid-python-9.3.0.0002.tar.gz or the specific CUBRID-Python version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_CUBRID-Python_downloaded_file>

On Unix/macOs:

pip install <path_to_CUBRID-Python_downloaded_file>


List distribution:

- cubrid-python-src.tar.gz
- cubrid-python-src-0.5.3.tar.gz
- cubrid-python-src-0.5.4.tar.gz
- cubrid-python-8.4.0.0001.tar.gz
- cubrid-python-src-8.4.0.tar.gz
- cubrid-python-8.4.1.0001.tar.gz
- cubrid-python-8.4.3.0001.tar.gz
- cubrid-python-8.4.3.0002.tar.gz
- cubrid-python-8.4.3.0003.tar.gz
- cubrid-python-8.4.3.0004.tar.gz
- cubrid-python-9.0.0.0001.tar.gz
- cubrid-python-9.1.0.0001.tar.gz
- cubrid-python-9.1.0.0002.tar.gz
- cubrid-python-9.1.0.0003.tar.gz
- cubrid-python-9.2.0.0001.tar.gz
- cubrid-python-9.3.0.0001.tar.gz
- cubrid-python-9.3.0.0002.tar.gz


Project link:

- Homepage
- Download