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

How to install libauc via python pip




libauc - LibAUC: A Deep Learning Library for X-Risk Optimization, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)

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



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_libauc_env

- Active the virtual environment

test_libauc_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_libauc_env

- Active the virtual environment

source test_libauc_env/bin/active


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

To install libauc on Windows(CMD):

py -m pip install libauc

To install libauc on Unix/macOs:

pip install libauc


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

Example:

pip install libauc==1.0.2


Please see the version list below table:

VersionReleased dateCommand
libauc 1.2.02022-07-31T03:27:09Windows:

py -m pip install libauc==1.2.0

Unix/macOs:

pip install libauc==1.2.0

libauc 1.1.82022-01-11T04:19:37Windows:

py -m pip install libauc==1.1.8

Unix/macOs:

pip install libauc==1.1.8

libauc 1.1.72021-12-06T21:24:36Windows:

py -m pip install libauc==1.1.7

Unix/macOs:

pip install libauc==1.1.7

libauc 1.1.62021-09-22T15:50:22Windows:

py -m pip install libauc==1.1.6

Unix/macOs:

pip install libauc==1.1.6

libauc 1.1.52021-09-01T06:30:13Windows:

py -m pip install libauc==1.1.5

Unix/macOs:

pip install libauc==1.1.5

libauc 1.1.02021-05-12T20:52:13Windows:

py -m pip install libauc==1.1.0

Unix/macOs:

pip install libauc==1.1.0

libauc 1.0.92021-05-09T21:34:02Windows:

py -m pip install libauc==1.0.9

Unix/macOs:

pip install libauc==1.0.9

libauc 1.0.62021-04-02T15:36:06Windows:

py -m pip install libauc==1.0.6

Unix/macOs:

pip install libauc==1.0.6

libauc 1.0.52021-04-01T20:12:50Windows:

py -m pip install libauc==1.0.5

Unix/macOs:

pip install libauc==1.0.5

libauc 1.0.42021-04-01T20:07:18Windows:

py -m pip install libauc==1.0.4

Unix/macOs:

pip install libauc==1.0.4

libauc 1.0.32021-03-31T08:51:57Windows:

py -m pip install libauc==1.0.3

Unix/macOs:

pip install libauc==1.0.3

libauc 1.0.22021-03-31T08:31:12Windows:

py -m pip install libauc==1.0.2

Unix/macOs:

pip install libauc==1.0.2


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

Download the distribution file from libauc-1.2.0-py3-none-any.whl or the specific libauc version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_libauc_downloaded_file>

On Unix/macOs:

pip install <path_to_libauc_downloaded_file>


List distribution:

- libauc-1.0.2-py3-none-any.whl (python version >=3.6)
- libauc-1.0.3-py3-none-any.whl (python version >=3.6)
- libauc-1.0.4-py3-none-any.whl (python version >=3.6)
- libauc-1.0.5-py3-none-any.whl (python version >=3.6)
- libauc-1.0.6-py3-none-any.whl (python version >=3.6)
- libauc-1.0.9-py3-none-any.whl (python version >=3.6)
- libauc-1.1.0-py3-none-any.whl (python version >=3.6)
- libauc-1.1.5-py3-none-any.whl (python version >=3.6)
- libauc-1.1.6-py3-none-any.whl (python version >=3.6)
- libauc-1.1.7-py3-none-any.whl (python version >=3.6)
- libauc-1.1.8-py3-none-any.whl (python version >=3.6)
- libauc-1.1.9rc0-py3-none-any.whl (python version >=3.6)
- libauc-1.1.9rc1-py3-none-any.whl (python version >=3.6)
- libauc-1.1.9rc2-py3-none-any.whl (python version >=3.6)
- libauc-1.1.9rc3-py3-none-any.whl (python version >=3.6)
- libauc-1.1.9rc4-py3-none-any.whl (python version >=3.6)
- libauc-1.2.0-py3-none-any.whl (python version >=3.6)


Project link:

- Homepage