To use the aida_interchange package within your project, you must first install it. It is recommended that you install aida_interchange into a python3 virtual environment. See Python Virtual Environment for more details on creating and using a virtual environment.
To install aida_interchange, make sure a Python Virtual Environment is activated and run the following command:
$ pip install aida-interchangeThe aida_interchange modules can now be imported into your project.
The python project uses Sphinx for generating documentation. To generate the documentation, make sure a Python Virtual Environment is activated, navigate to the AIDA-Interchange-Format/python/docs directory, and run the update_documentation.sh script.
$ cd docs
$ ./update_documentation.shThis script will generate documentation in the form of HTML and place it within the AIDA-Interchange-Format/python/docs/build/html folder.
It is recommended that Python development be done in an isolated environment called a virtual environment. There are multiple ways to set up and use Python virtual environments. This README describes one of those ways.
The basic steps are:
- Install virtualenv (done once)
- Create a virtual environment (done once per development effort)
- Repeat as needed:
- Activate a virtual environment
- Install libraries and develop code
- Deactivate a virtual environment
Follow the instructions below to set up your virtual environment. It is important to note that you should never install any project specific python dependencies outside of your virtual environment. Also, ensure that your virtual environment has been activated before running python scripts within this repository.
If you haven't installed virtualenv yet, follow these steps. This only needs to be once.
$ cd ~
$ mkdir .virtualenvs
$ pip install virtualenvVerify virtualenv is installed
$ which virtualenvWhen you are starting development of a python project, you first need to create a virtual environment. The name of the virtual environment in the example below, aida-interchange-format, assumes you are making changes or testing the AIF library. Feel free to use a name specific to your application if you are just using the AIF library.
To create the virtual environment and install the latest AIF, run the following:
$ virtualenv -p python3 ~/.virtualenvs/aida-interchange-format
$ source ~/.virtualenvs/aida-interchange-format/bin/activate
$ pip install aida-interchangeYour virtual environment is now activated. The following sections describe deactivating and re-activating the virtual environment.
To deactivate your current virtual environment, run the following command.
$ deactivateTo re-activate your virtual environment, run the following command.
$ source ~/.virtualenvs/aida-interchange-format/bin/activate