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

How to install aiida-vasp via python pip




aiida-vasp - AiiDA Plugin for running VASP calculations., it belongs to Classifiers:

- Environment :: Plugins
- Framework :: AiiDA
- Intended Audience :: Science/Research
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Chemistry
- Topic :: Scientific/Engineering :: Physics

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



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-vasp_env

- Active the virtual environment

test_aiida-vasp_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-vasp_env

- Active the virtual environment

source test_aiida-vasp_env/bin/active


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

To install aiida-vasp on Windows(CMD):

py -m pip install aiida-vasp

To install aiida-vasp on Unix/macOs:

pip install aiida-vasp


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

Example:

pip install aiida-vasp==0.2.1


Please see the version list below table:

VersionReleased dateCommand
aiida-vasp 2.1.12021-07-20T20:55:25Windows:

py -m pip install aiida-vasp==2.1.1

Unix/macOs:

pip install aiida-vasp==2.1.1

aiida-vasp 2.1.02021-02-18T14:05:37Windows:

py -m pip install aiida-vasp==2.1.0

Unix/macOs:

pip install aiida-vasp==2.1.0

aiida-vasp 2.0.02021-01-15T15:13:53Windows:

py -m pip install aiida-vasp==2.0.0

Unix/macOs:

pip install aiida-vasp==2.0.0

aiida-vasp 1.0.12020-06-19T20:08:49Windows:

py -m pip install aiida-vasp==1.0.1

Unix/macOs:

pip install aiida-vasp==1.0.1

aiida-vasp 0.3.02019-09-23T16:21:02Windows:

py -m pip install aiida-vasp==0.3.0

Unix/macOs:

pip install aiida-vasp==0.3.0

aiida-vasp 0.2.42018-08-30T14:27:21Windows:

py -m pip install aiida-vasp==0.2.4

Unix/macOs:

pip install aiida-vasp==0.2.4

aiida-vasp 0.2.32018-04-10T10:03:54Windows:

py -m pip install aiida-vasp==0.2.3

Unix/macOs:

pip install aiida-vasp==0.2.3

aiida-vasp 0.2.22018-03-15T14:34:37Windows:

py -m pip install aiida-vasp==0.2.2

Unix/macOs:

pip install aiida-vasp==0.2.2

aiida-vasp 0.2.12018-03-13T16:50:14Windows:

py -m pip install aiida-vasp==0.2.1

Unix/macOs:

pip install aiida-vasp==0.2.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_aiida-vasp_downloaded_file>

On Unix/macOs:

pip install <path_to_aiida-vasp_downloaded_file>


List distribution:

- aiida-vasp-0.2.1.tar.gz
- aiida_vasp-0.2.1-py2-none-any.whl
- aiida-vasp-0.2.2.tar.gz
- aiida_vasp-0.2.2-py2-none-any.whl
- aiida-vasp-0.2.3.tar.gz
- aiida_vasp-0.2.3-py2-none-any.whl
- aiida-vasp-0.2.4.tar.gz
- aiida_vasp-0.2.4-py2-none-any.whl
- aiida-vasp-0.3.0.tar.gz
- aiida_vasp-0.3.0-py2.py3-none-any.whl
- aiida_vasp-0.3.0-py3-none-any.whl
- aiida-vasp-1.0.1.tar.gz
- aiida_vasp-1.0.1-py2.py3-none-any.whl
- aiida-vasp-2.0.0.tar.gz
- aiida_vasp-2.0.0-py3-none-any.whl
- aiida-vasp-2.1.0.tar.gz
- aiida_vasp-2.1.0-py3-none-any.whl
- aiida-vasp-2.1.1.tar.gz
- aiida_vasp-2.1.1-py3-none-any.whl


Project link:

- Homepage