An AiiDA environment manager
Project description
AiiDA-Project
Tool for managing AiiDA "projects" - Python environments tailored to AiiDA with separated project directories.
❗️ This package is still in the early stages of development and we will most likely break the API regularly in new 0.X versions. Be sure to pin the version when installing this package in scripts. |
---|
Installation
The package can be installed globally with pipx
:
pipx install aiida-project
installed package aiida-project 0.4.0, installed using Python 3.9.16
These apps are now globally available
- aiida-project
done! ✨ 🌟 ✨
See the pipx
installation instructions if you haven't already installed pipx
.
Usage
After installing aiida-project
, run the init
command to get started:
aiida-project init
👋 Hello there! Which shell are you using? [bash/zsh/fish] (zsh):
✨🚀 AiiDA-project has been initialised! 🚀✨
Info: For the changes to take effect, run the following command:
source /Users/mbercx/.zshrc
or simply open a new terminal.
This will also add the cda
function to your shell startup file, so you can easily switch projects.
Note that you'll have to source your e.g. .zshrc
file for this function to be accessible!
create
After initialising, you can create new projects with their own virtual environment and project directory using the create
command.
The latest version of aiida-core
will also be installed automatically, along with any plugins you specify with the --plugin
option:
aiida-project create firstproject --plugin aiida-quantumespresso
✨ Creating the project directory and environment using the Python binary:
/opt/homebrew/Cellar/python@3.11/3.11.3/Frameworks/Python.framework/Versions/3.11/bin/python3.11
🔧 Adding the AiiDA environment variables to the activate script.
✅ Success: Project created.
💾 Installing the latest release of the AiiDA core module.
💾 Installing `aiida-quantumespresso` from the PyPI.
You can then activate the project using the cda
command described above:
cda firstproject
Next to activating the Python virtual environment, this will also change the directory to the one for the project.
aiida-project
automatically sets up a directory structure, which we intend to be made configurable globally:
(firstproject) ~/project/firstproject$ tree -a
.
├── .aiida
│ ├── access
│ ├── config.json
│ └── daemon
│ └── log
├── code
└── setup
├── code
├── computer
└── profile
9 directories, 1 file
Note: You may not have the tree
command installed on your system.
destroy
Projects can be cleaned up by using aiida-project destroy
.
First deactivate
the environment:
deactivate firstproject
Next you can run the destroy
command:
aiida-project destroy firstproject
❗️ Are you sure you want to delete the entire firstproject project? This cannot be undone! [y/N]: y
Succes: Project with name firstproject has been destroyed.
This will remove both the virtual environment, as well as the whole project folder:
~/project$ tree -a
.
└── .aiida_projects
├── conda
└── virtualenv
3 directories, 0 files
Other features
virtualenvwrapper
integration
If you are already using virtualenvwrapper
, the virtual environments will be installed in the same directory as the one used by virtualenvwrapper
(i.e. $WORKON_HOME
).
So you can then also use the
aiida@prnmarvelsrv3:~$ workon firstproject
Environment configuration
Automatically sets some typical AiiDA UNIX environment variables, like AIIDA_PATH and the shell completion (bash
/zsh
for now, fish
support coming soon!):
$ echo $AIIDA_PATH
/Users/mbercx/project/firstproject
Future goals
- For now it just installs AiiDA and plugins, but in the future we want it to be able to also automatically set up the AiiDA database, repository and default profile.
(firstproject) aiida@prnmarvelsrv3:~/project/firstproject$ verdi status
✔ version: AiiDA v2.3.0
✔ config: /home/aiida/project/firstproject/.aiida
⏺ profile: no profile configured yet
Report: Configure a profile by running `verdi quicksetup` or `verdi setup`.
- Projects are pydantic data models, and are stored as JSON in the .aiida_projects directory. Over time it should be possible to completely regenerate a project based on this file, but that’s still a work in progress:
(firstproject) aiida@prnmarvelsrv3:~/project/firstproject$ cd ..
(firstproject) aiida@prnmarvelsrv3:~/project$ tree -a .aiida_projects/
.aiida_projects/
├── conda
└── virtualenv
└── firstproject.json
2 directories, 1 file
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aiida_project-0.5.1.tar.gz
.
File metadata
- Download URL: aiida_project-0.5.1.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47d7399422c5d05e30717e1549b288405cf6bdbc19cd5d4179cf682a373f462f |
|
MD5 | f649f6443a07afd10abf9eb56f8b83b1 |
|
BLAKE2b-256 | 584384c079bba560a289d23100b14764b07fcae3cdd2afec64c755efed0baaca |
File details
Details for the file aiida_project-0.5.1-py3-none-any.whl
.
File metadata
- Download URL: aiida_project-0.5.1-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ee56b9e9cc2c9ff6d65158652f5a2dacced485fe12282ae8e00d634a9785bc1 |
|
MD5 | 86093216fd9d88a0c5c85e8ba4466b10 |
|
BLAKE2b-256 | 3a54e68d50c66c1804421f3c541de633ad5d1c057435fea3391a1101fecd90df |