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

How to install adg via python pip




adg - A powerful diagram generator and evaluator for many-body formalisms in physics and chemistry, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Operating System :: Unix

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



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_adg_env

- Active the virtual environment

test_adg_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_adg_env

- Active the virtual environment

source test_adg_env/bin/active


Step 2: OK, now, let flow below content to start the installation adg

To install adg on Windows(CMD):

py -m pip install adg

To install adg on Unix/macOs:

pip install adg


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

Example:

pip install adg==0.1.0


Please see the version list below table:

VersionReleased dateCommand
adg 3.0.22022-04-13T15:44:01Windows:

py -m pip install adg==3.0.2

Unix/macOs:

pip install adg==3.0.2

adg 3.0.12021-06-16T13:14:11Windows:

py -m pip install adg==3.0.1

Unix/macOs:

pip install adg==3.0.1

adg 3.0.02021-02-15T17:00:06Windows:

py -m pip install adg==3.0.0

Unix/macOs:

pip install adg==3.0.0

adg 2.0.02020-07-03T13:27:25Windows:

py -m pip install adg==2.0.0

Unix/macOs:

pip install adg==2.0.0

adg 1.0.12019-06-18T21:03:21Windows:

py -m pip install adg==1.0.1

Unix/macOs:

pip install adg==1.0.1

adg 1.0.02019-06-15T22:08:16Windows:

py -m pip install adg==1.0.0

Unix/macOs:

pip install adg==1.0.0

adg 0.2.12018-11-19T15:59:35Windows:

py -m pip install adg==0.2.1

Unix/macOs:

pip install adg==0.2.1

adg 0.2.02018-08-02T17:27:50Windows:

py -m pip install adg==0.2.0

Unix/macOs:

pip install adg==0.2.0

adg 0.1.02018-07-27T15:38:50Windows:

py -m pip install adg==0.1.0

Unix/macOs:

pip install adg==0.1.0


Step 4: Otherwise, you can install adg from local archives:

Download the distribution file from adg-3.0.2.tar.gz or the specific adg version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_adg_downloaded_file>

On Unix/macOs:

pip install <path_to_adg_downloaded_file>


List distribution:

- adg-0.1.0-py2-none-any.whl(python version >=2.7.1)
- adg-0.1.0-py2.7.egg(python version >=2.7.1)
- adg-0.1.0.tar.gz(python version >=2.7.1)
- adg-0.2.0-py2-none-any.whl(python version >=2.7.1)
- adg-0.2.0.tar.gz(python version >=2.7.1)
- adg-0.2.1-py2-none-any.whl(python version >=2.7.1)
- adg-0.2.1.tar.gz(python version >=2.7.1)
- adg-1.0.0-py2-none-any.whl(python version >=2.7.1)
- adg-1.0.0.tar.gz(python version >=2.7.1)
- adg-1.0.1-py2-none-any.whl(python version >=2.7.1)
- adg-1.0.1.tar.gz(python version >=2.7.1)
- adg-2.0.0-py2-none-any.whl(python version >=2.7.1)
- adg-2.0.0-py3-none-any.whl(python version >=2.7.1)
- adg-2.0.0.tar.gz(python version >=2.7.1)
- adg-3.0.0-py3-none-any.whl(python version >=2.7.1)
- adg-3.0.0-py3.8.egg(python version >=2.7.1)
- adg-3.0.0.tar.gz(python version >=2.7.1)
- adg-3.0.1-py3-none-any.whl(python version >=2.7.1)
- adg-3.0.1.tar.gz(python version >=2.7.1)
- adg-3.0.2-py3-none-any.whl(python version >=2.7.1)
- adg-3.0.2.tar.gz(python version >=2.7.1)


Project link:

- Homepage