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

How to install Semi-ATE via python pip




Semi-ATE - Framework for Semiconductor ATE testing projects, it belongs to Classifiers:

- Intended Audience :: Education
- License :: OSI Approved :: GNU General Public License v2 (GPLv2)
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX :: Linux
- Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
- Topic :: Scientific/Engineering :: Human Machine Interfaces
- Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
- Topic :: Software Development :: Build Tools
- Topic :: Software Development :: Code Generators
- Topic :: Software Development :: Quality Assurance

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



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_Semi-ATE_env

- Active the virtual environment

test_Semi-ATE_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_Semi-ATE_env

- Active the virtual environment

source test_Semi-ATE_env/bin/active


Step 2: OK, now, let flow below content to start the installation Semi-ATE

To install Semi-ATE on Windows(CMD):

py -m pip install Semi-ATE

To install Semi-ATE on Unix/macOs:

pip install Semi-ATE


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

Example:

pip install Semi-ATE==0.1.0.dev0                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
Semi-ATE 0.1.292021-10-25T07:44:02Windows:

py -m pip install Semi-ATE==0.1.29

Unix/macOs:

pip install Semi-ATE==0.1.29

Semi-ATE 0.1.272021-09-15T17:44:25Windows:

py -m pip install Semi-ATE==0.1.27

Unix/macOs:

pip install Semi-ATE==0.1.27

Semi-ATE 0.1.262021-09-15T15:49:02Windows:

py -m pip install Semi-ATE==0.1.26

Unix/macOs:

pip install Semi-ATE==0.1.26

Semi-ATE 0.1.252021-08-20T09:53:09Windows:

py -m pip install Semi-ATE==0.1.25

Unix/macOs:

pip install Semi-ATE==0.1.25

Semi-ATE 0.1.242021-03-31T07:53:54Windows:

py -m pip install Semi-ATE==0.1.24

Unix/macOs:

pip install Semi-ATE==0.1.24

Semi-ATE 0.1.232021-03-17T06:33:43Windows:

py -m pip install Semi-ATE==0.1.23

Unix/macOs:

pip install Semi-ATE==0.1.23

Semi-ATE 0.1.222021-03-11T07:33:19Windows:

py -m pip install Semi-ATE==0.1.22

Unix/macOs:

pip install Semi-ATE==0.1.22

Semi-ATE 0.1.212021-03-10T22:16:02Windows:

py -m pip install Semi-ATE==0.1.21

Unix/macOs:

pip install Semi-ATE==0.1.21

Semi-ATE 0.1.20 yanked2021-03-10T21:56:44Windows:

py -m pip install Semi-ATE==0.1.20                                                                          yanked

Unix/macOs:

pip install Semi-ATE==0.1.20                                                                          yanked


Step 4: Otherwise, you can install Semi-ATE from local archives:

Download the distribution file from Semi-ATE-0.1.29.tar.gz or the specific Semi-ATE version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Semi-ATE_downloaded_file>

On Unix/macOs:

pip install <path_to_Semi-ATE_downloaded_file>


List distribution:


Project link: