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

How to install borneo via python pip




borneo - Oracle NoSQL Database Python SDK, it belongs to Classifiers:

- License :: OSI Approved :: Universal Permissive License (UPL)
- Topic :: Database
- Topic :: Database :: Front-Ends

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



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_borneo_env

- Active the virtual environment

test_borneo_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_borneo_env

- Active the virtual environment

source test_borneo_env/bin/active


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

To install borneo on Windows(CMD):

py -m pip install borneo

To install borneo on Unix/macOs:

pip install borneo


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

Example:

pip install borneo==5.0.1


Please see the version list below table:

VersionReleased dateCommand
borneo 5.3.42022-06-13T15:41:21Windows:

py -m pip install borneo==5.3.4

Unix/macOs:

pip install borneo==5.3.4

borneo 5.3.32022-04-19T19:49:36Windows:

py -m pip install borneo==5.3.3

Unix/macOs:

pip install borneo==5.3.3

borneo 5.3.02022-02-17T21:58:32Windows:

py -m pip install borneo==5.3.0

Unix/macOs:

pip install borneo==5.3.0

borneo 5.2.42021-05-19T17:53:44Windows:

py -m pip install borneo==5.2.4

Unix/macOs:

pip install borneo==5.2.4

borneo 5.2.12020-08-14T19:23:06Windows:

py -m pip install borneo==5.2.1

Unix/macOs:

pip install borneo==5.2.1

borneo 5.2.02020-02-19T19:47:48Windows:

py -m pip install borneo==5.2.0

Unix/macOs:

pip install borneo==5.2.0

borneo 5.1.02019-08-30T17:07:29Windows:

py -m pip install borneo==5.1.0

Unix/macOs:

pip install borneo==5.1.0

borneo 5.0.12019-05-21T14:58:26Windows:

py -m pip install borneo==5.0.1

Unix/macOs:

pip install borneo==5.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_borneo_downloaded_file>

On Unix/macOs:

pip install <path_to_borneo_downloaded_file>


List distribution:

- borneo-5.0.1-py2.py3-none-any.whl
- borneo-5.0.1.tar.gz
- borneo-5.1.0-py2.py3-none-any.whl
- borneo-5.1.0.tar.gz
- borneo-5.2.0-py2.py3-none-any.whl
- borneo-5.2.0.tar.gz
- borneo-5.2.1-py2.py3-none-any.whl
- borneo-5.2.1.tar.gz
- borneo-5.2.4-py2.py3-none-any.whl
- borneo-5.2.4.tar.gz
- borneo-5.3.0-py2.py3-none-any.whl
- borneo-5.3.0.tar.gz
- borneo-5.3.3-py2.py3-none-any.whl
- borneo-5.3.3.tar.gz
- borneo-5.3.4-py2.py3-none-any.whl
- borneo-5.3.4.tar.gz
- borneo-5.3.5-py2.py3-none-any.whl
- borneo-5.3.5.tar.gz
- borneo-5.3.7-py2.py3-none-any.whl
- borneo-5.3.7.tar.gz


Project link:

- Homepage