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

How to install surropt via python pip




surropt - Surrogate optimization toolbox for time consuming models, it belongs to Classifiers:

- License :: OSI Approved :: Apache Software License

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



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_surropt_env

- Active the virtual environment

test_surropt_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_surropt_env

- Active the virtual environment

source test_surropt_env/bin/active


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

To install surropt on Windows(CMD):

py -m pip install surropt

To install surropt on Unix/macOs:

pip install surropt


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

Example:

pip install surropt==0.0.1


Please see the version list below table:

VersionReleased dateCommand
surropt 0.0.122021-08-13T17:35:47Windows:

py -m pip install surropt==0.0.12

Unix/macOs:

pip install surropt==0.0.12

surropt 0.0.112021-07-04T14:45:28Windows:

py -m pip install surropt==0.0.11

Unix/macOs:

pip install surropt==0.0.11

surropt 0.0.102020-02-13T06:09:59Windows:

py -m pip install surropt==0.0.10

Unix/macOs:

pip install surropt==0.0.10

surropt 0.0.92019-12-04T16:55:28Windows:

py -m pip install surropt==0.0.9

Unix/macOs:

pip install surropt==0.0.9

surropt 0.0.82019-11-21T04:00:16Windows:

py -m pip install surropt==0.0.8

Unix/macOs:

pip install surropt==0.0.8

surropt 0.0.72019-11-19T20:19:42Windows:

py -m pip install surropt==0.0.7

Unix/macOs:

pip install surropt==0.0.7

surropt 0.0.62019-11-19T19:04:12Windows:

py -m pip install surropt==0.0.6

Unix/macOs:

pip install surropt==0.0.6

surropt 0.0.52019-11-14T20:25:57Windows:

py -m pip install surropt==0.0.5

Unix/macOs:

pip install surropt==0.0.5

surropt 0.0.42019-11-14T20:01:27Windows:

py -m pip install surropt==0.0.4

Unix/macOs:

pip install surropt==0.0.4

surropt 0.0.32019-11-14T19:39:54Windows:

py -m pip install surropt==0.0.3

Unix/macOs:

pip install surropt==0.0.3

surropt 0.0.22019-11-14T19:03:25Windows:

py -m pip install surropt==0.0.2

Unix/macOs:

pip install surropt==0.0.2

surropt 0.0.12019-11-14T02:04:07Windows:

py -m pip install surropt==0.0.1

Unix/macOs:

pip install surropt==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_surropt_downloaded_file>

On Unix/macOs:

pip install <path_to_surropt_downloaded_file>


List distribution:


Project link:

- Homepage
- Repository