Participation in the development of the platform

You can participate in the development of the Kaspersky Neuromorphic Platform. To do this, you need to get the source code from the platform repository.

To participate in the development of the platform:

  1. Open the terminal and use the cd command to go to the working directory.

    You can use any other tool for working with Git. For example, in Windows, you can use Visual Studio.

  2. To obtain the source code for the platform, you must perform the following actions:
    1. At a command line, run the following command to download the platform repository to the device:

      git clone <platform_repository>

      <platform_repository> is the platform repository web address received from Kaspersky experts.

    2. Install Python packages by running the following command:

      pip3 -r requirements.txt

    3. If necessary, download the remote platform repository to your local repository. You can use the following command for this:

      git pull

  3. In the command line, run the following command to create the branch where you will be making changes to the platform code:

    git checkout -b <branch_name>

  4. Make the changes to the platform code.
  5. Commit the changes.

    For example, you can use the following commands to publish changes:

    git add <publishing_file_name>

    git commit -m "<publish_message>"

    git push origin <branch_name>

  6. Publish the changes to the platform repository.
Page top