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

How to install sky130 via python pip




sky130 - skywater gdsfactory pdk, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- License :: OSI Approved

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



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_sky130_env

- Active the virtual environment

test_sky130_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_sky130_env

- Active the virtual environment

source test_sky130_env/bin/active


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

To install sky130 on Windows(CMD):

py -m pip install sky130

To install sky130 on Unix/macOs:

pip install sky130


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

Example:

pip install sky130==0.0.3


Please see the version list below table:

VersionReleased dateCommand
sky130 0.0.152022-08-04T16:06:26Windows:

py -m pip install sky130==0.0.15

Unix/macOs:

pip install sky130==0.0.15

sky130 0.0.142022-08-02T15:51:37Windows:

py -m pip install sky130==0.0.14

Unix/macOs:

pip install sky130==0.0.14

sky130 0.0.132022-07-08T06:18:45Windows:

py -m pip install sky130==0.0.13

Unix/macOs:

pip install sky130==0.0.13

sky130 0.0.122022-06-21T18:42:24Windows:

py -m pip install sky130==0.0.12

Unix/macOs:

pip install sky130==0.0.12

sky130 0.0.112022-06-17T16:23:25Windows:

py -m pip install sky130==0.0.11

Unix/macOs:

pip install sky130==0.0.11

sky130 0.0.102022-06-12T17:09:39Windows:

py -m pip install sky130==0.0.10

Unix/macOs:

pip install sky130==0.0.10

sky130 0.0.42022-04-27T14:05:15Windows:

py -m pip install sky130==0.0.4

Unix/macOs:

pip install sky130==0.0.4

sky130 0.0.32022-04-26T17:18:26Windows:

py -m pip install sky130==0.0.3

Unix/macOs:

pip install sky130==0.0.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sky130_downloaded_file>

On Unix/macOs:

pip install <path_to_sky130_downloaded_file>


List distribution:


Project link:

- Homepage