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

How to install yices via python pip




yices - Python Bindings for the Yices SMT Solver, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Programming Language :: C
- Topic :: Scientific/Engineering :: Mathematics
- Topic :: Software Development :: Compilers

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



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_yices_env

- Active the virtual environment

test_yices_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_yices_env

- Active the virtual environment

source test_yices_env/bin/active


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

To install yices on Windows(CMD):

py -m pip install yices

To install yices on Unix/macOs:

pip install yices


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

Example:

pip install yices==1.0.0


Please see the version list below table:

VersionReleased dateCommand
yices 1.1.52021-12-06T22:27:48Windows:

py -m pip install yices==1.1.5

Unix/macOs:

pip install yices==1.1.5

yices 1.1.42020-07-11T01:24:21Windows:

py -m pip install yices==1.1.4

Unix/macOs:

pip install yices==1.1.4

yices 1.1.32020-05-20T18:29:19Windows:

py -m pip install yices==1.1.3

Unix/macOs:

pip install yices==1.1.3

yices 1.1.22018-11-26T19:54:00Windows:

py -m pip install yices==1.1.2

Unix/macOs:

pip install yices==1.1.2

yices 1.1.02018-10-08T13:46:25Windows:

py -m pip install yices==1.1.0

Unix/macOs:

pip install yices==1.1.0

yices 1.0.82017-10-04T21:35:07Windows:

py -m pip install yices==1.0.8

Unix/macOs:

pip install yices==1.0.8

yices 1.0.72017-09-29T23:45:14Windows:

py -m pip install yices==1.0.7

Unix/macOs:

pip install yices==1.0.7

yices 1.0.62017-09-28T17:43:52Windows:

py -m pip install yices==1.0.6

Unix/macOs:

pip install yices==1.0.6

yices 1.0.52017-09-28T17:30:14Windows:

py -m pip install yices==1.0.5

Unix/macOs:

pip install yices==1.0.5

yices 1.0.42017-09-28T17:25:58Windows:

py -m pip install yices==1.0.4

Unix/macOs:

pip install yices==1.0.4

yices 1.0.32017-09-28T16:21:52Windows:

py -m pip install yices==1.0.3

Unix/macOs:

pip install yices==1.0.3

yices 1.0.22017-09-27T23:45:23Windows:

py -m pip install yices==1.0.2

Unix/macOs:

pip install yices==1.0.2

yices 1.0.12017-09-27T00:52:16Windows:

py -m pip install yices==1.0.1

Unix/macOs:

pip install yices==1.0.1

yices 1.0.02017-09-11T13:37:34Windows:

py -m pip install yices==1.0.0

Unix/macOs:

pip install yices==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_yices_downloaded_file>

On Unix/macOs:

pip install <path_to_yices_downloaded_file>


List distribution:


Project link:

- Homepage