Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install aiida-siesta via python pip




aiida-siesta - A plugin for Siesta's basic functionality within the AiiDA framework., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Framework :: AiiDA
- License :: OSI Approved :: MIT License
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10

When you know about this project and you want to new install aiida-siesta to support your project or you get trouble as ModuleNotFoundError: No module named "aiida-siesta" or ImportError: cannot import name "aiida-siesta" in your project, let follow this tutorial to install aiida-siesta



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_aiida-siesta_env

- Active the virtual environment

test_aiida-siesta_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_aiida-siesta_env

- Active the virtual environment

source test_aiida-siesta_env/bin/active


Step 2: OK, now, let flow below content to start the installation aiida-siesta

To install aiida-siesta on Windows(CMD):

py -m pip install aiida-siesta

To install aiida-siesta on Unix/macOs:

pip install aiida-siesta


Step 3: If you want to install a specific aiida-siesta version, add ==<aiida-siesta version> to the end command line

Example:

pip install aiida-siesta==0.9.10


Please see the version list below table:

VersionReleased dateCommand
aiida-siesta 2.0.02022-07-17T17:00:47Windows:

py -m pip install aiida-siesta==2.0.0

Unix/macOs:

pip install aiida-siesta==2.0.0

aiida-siesta 1.4.02022-07-16T16:59:54Windows:

py -m pip install aiida-siesta==1.4.0

Unix/macOs:

pip install aiida-siesta==1.4.0

aiida-siesta 1.3.02022-03-08T08:10:59Windows:

py -m pip install aiida-siesta==1.3.0

Unix/macOs:

pip install aiida-siesta==1.3.0

aiida-siesta 1.2.02021-05-21T16:06:37Windows:

py -m pip install aiida-siesta==1.2.0

Unix/macOs:

pip install aiida-siesta==1.2.0

aiida-siesta 1.1.12020-11-07T18:19:50Windows:

py -m pip install aiida-siesta==1.1.1

Unix/macOs:

pip install aiida-siesta==1.1.1

aiida-siesta 1.1.02020-10-05T14:52:51Windows:

py -m pip install aiida-siesta==1.1.0

Unix/macOs:

pip install aiida-siesta==1.1.0

aiida-siesta 1.0.12020-01-29T13:50:25Windows:

py -m pip install aiida-siesta==1.0.1

Unix/macOs:

pip install aiida-siesta==1.0.1

aiida-siesta 1.0.02019-12-03T16:17:59Windows:

py -m pip install aiida-siesta==1.0.0

Unix/macOs:

pip install aiida-siesta==1.0.0

aiida-siesta 0.9.102018-10-15T14:38:04Windows:

py -m pip install aiida-siesta==0.9.10

Unix/macOs:

pip install aiida-siesta==0.9.10


Step 4: Otherwise, you can install aiida-siesta from local archives:

Download the distribution file from aiida-siesta-2.0.0.tar.gz or the specific aiida-siesta version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_aiida-siesta_downloaded_file>

On Unix/macOs:

pip install <path_to_aiida-siesta_downloaded_file>


List distribution:

- aiida-siesta-0.9.10.tar.gz
- aiida-siesta-1.0.0.tar.gz
- aiida-siesta-1.0.1.tar.gz
- aiida-siesta-1.1.0.tar.gz
- aiida-siesta-1.1.1.tar.gz
- aiida-siesta-1.2.0.tar.gz
- aiida-siesta-1.3.0.tar.gz
- aiida-siesta-1.4.0.tar.gz
- aiida-siesta-2.0.0.tar.gz(python version >=3.8)


Project link:

- Documentation
- Home
- Source