1. Installing SMiPoly

SMiPoly can be installed with pip or conda.

1. Current version and requirements

See the project homepage:
https://github.com/PEJpOhno/SMiPoly

2. Install with pip

Create new virtual environment and activate it. To install this package, run as follows.

$pip install smipoly

3. Install with conda

Add the channel “conda-forge” if it have not been enable.

$conda config --add channels conda-forge

Create a new environment.

$conda create -n "YOUR_NEW_ENVIRONMNT_NAME" python  
or 
$conda create -n "YOUR_NEW_ENVIRONMNT_NAME" python="required version (ex. 3.10)"

Then activate it.

$conda activate "YOUR_NEW_ENVIRONMNT_NAME"

And install SMiPoly.

$conda install smipoly

Or after create and activate a new environment,

$conda install conda-forge::smipoly