Installation

From AWS CodeArtifact

In order to install the library as a python package, you need to configure the credentials to access AWS CodeArtifact. Once you’ve done that, you can install this library as with any other Python package:

python -m pip install genomcore
# Install a specific version
python -m pip install genomcore==1.0.0

From Bitbucket

Note

To run the commands in this section, you need access to the repository with SSH keys.

In order to install the library from Bitbucket as a python package, run the following command:

python -m pip install git+ssh://git@bitbucket.org/madeofgenes/genomcore-sdk-python.git@<BRANCH_NAME_TO_INSTALL>
# To install the master branch, there's no need to append a "@" at the end:
python -m pip install git+ssh://git@bitbucket.org/madeofgenes/genomcore-sdk-python.git
# To install a specific version, use "@" followed by the branch or tag name
python -m pip install git+ssh://git@bitbucket.org/madeofgenes/genomcore-sdk-python.git@release/v1.0.0
python -m pip install git+ssh://git@bitbucket.org/madeofgenes/genomcore-sdk-python.git@1.0.0