SDK Installation¶
Build¶
Java¶
Note
Indigo packages support Intel x86 and x64 platforms, and Windows, Linux, Mac OS X operating systems. If you need to use Indigo on other platforms, please contact us at lifescience.opensource@epam.com
If your project use Maven, you can add Indigo dependency to your pom.xml:
<dependencies>
...
<dependency>
<groupId>com.epam.indigo</groupId>
<artifactId>indigo</artifactId>
<version>1.4.0-beta.r0</version>
</dependency>
<dependency>
<groupId>com.epam.indigo</groupId>
<artifactId>indigo-inchi</artifactId>
<version>1.4.0-beta.r0</version>
</dependency>
<dependency>
<groupId>com.epam.indigo</groupId>
<artifactId>indigo-renderer</artifactId>
<version>1.4.0-beta.r0</version>
</dependency>
<dependency>
<groupId>com.epam.indigo</groupId>
<artifactId>bingo-nosql</artifactId>
<version>1.4.0-beta.r0</version>
</dependency>
...
</dependencies>
On Debian starting from Wheezy and Ubuntu starting from 12.10 you can install stable version of Indigo SDK with the following command:
sudo apt-get install libindigo-java
Python¶
Indigo python SDK can be found at PyPi
One can install the Indigo library using pip utility
pip install epam.indigo
.NET¶
To add Indigo assembly DLL to your Visual Studio project you need to 2:
Right-click the name of your project in Solution Explorer and then select Add Reference. A dialog should appear.
Select the Browse tab.
Browse to the folder that contains Indigo, select the indigo-dotnet.dll and indigo-inchi-dotnet.dll, indigo-renderer-dotnet.dll if you need, and then click OK.
NuGet Repository
Indigo .NET packages now available at Nuget
Just add Indigo.Net
as a dependency into the project.
Footnotes