Installation#

To add Scitacean from pypi.org:

uv add scitacean

If you need to transfer files via SFTP, i.e., with scitacean.transfer.sftp.SFTPFileTransfer, specify the sftp:

uv add scitacean --extra sftp

To add Scitacean from conda-forge:

pixi add scitacean

In contrast to to Pip package used by uv, this always installs the dependencies for SFTP. So no additional steps are needed to use scitacean.transfer.sftp.SFTPFileTransfer.

Scitacean is available on pypi.org:

python -m pip install scitacean

If you need to transfer files via SFTP, i.e., with scitacean.transfer.sftp.SFTPFileTransfer, specify the sftp extra when installing:

python -m pip install "scitacean[sftp]"

Scitacean is available on conda-forge:

conda install -c conda-forge scitacean

In contrast to installing with Pip, this always installs the dependencies for SFTP. So no additional steps are needed to use scitacean.transfer.sftp.SFTPFileTransfer.