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

How to install potentials via python pip




potentials - API database tools for accessing the NIST Interatomic Potentials Repository: explore and download interatomic potentials and computed properties., it belongs to Classifiers:

- Intended Audience :: Science/Research
- Natural Language :: English
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Physics

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



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_potentials_env

- Active the virtual environment

test_potentials_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_potentials_env

- Active the virtual environment

source test_potentials_env/bin/active


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

To install potentials on Windows(CMD):

py -m pip install potentials

To install potentials on Unix/macOs:

pip install potentials


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

Example:

pip install potentials==0.0.1


Please see the version list below table:

VersionReleased dateCommand
potentials 0.3.42022-06-01T17:23:43Windows:

py -m pip install potentials==0.3.4

Unix/macOs:

pip install potentials==0.3.4

potentials 0.3.32022-03-31T21:58:47Windows:

py -m pip install potentials==0.3.3

Unix/macOs:

pip install potentials==0.3.3

potentials 0.3.22021-12-01T19:42:57Windows:

py -m pip install potentials==0.3.2

Unix/macOs:

pip install potentials==0.3.2

potentials 0.3.12021-09-14T16:19:09Windows:

py -m pip install potentials==0.3.1

Unix/macOs:

pip install potentials==0.3.1

potentials 0.3.02021-08-06T17:06:58Windows:

py -m pip install potentials==0.3.0

Unix/macOs:

pip install potentials==0.3.0

potentials 0.2.82020-11-05T21:07:29Windows:

py -m pip install potentials==0.2.8

Unix/macOs:

pip install potentials==0.2.8

potentials 0.2.72020-11-04T21:50:03Windows:

py -m pip install potentials==0.2.7

Unix/macOs:

pip install potentials==0.2.7

potentials 0.2.62020-09-25T16:20:12Windows:

py -m pip install potentials==0.2.6

Unix/macOs:

pip install potentials==0.2.6

potentials 0.2.52020-09-17T20:28:21Windows:

py -m pip install potentials==0.2.5

Unix/macOs:

pip install potentials==0.2.5

potentials 0.2.42020-09-11T18:47:28Windows:

py -m pip install potentials==0.2.4

Unix/macOs:

pip install potentials==0.2.4

potentials 0.2.32020-09-10T18:52:11Windows:

py -m pip install potentials==0.2.3

Unix/macOs:

pip install potentials==0.2.3

potentials 0.2.22020-07-29T14:50:59Windows:

py -m pip install potentials==0.2.2

Unix/macOs:

pip install potentials==0.2.2

potentials 0.2.12020-07-22T21:31:35Windows:

py -m pip install potentials==0.2.1

Unix/macOs:

pip install potentials==0.2.1

potentials 0.2.02020-04-07T18:36:14Windows:

py -m pip install potentials==0.2.0

Unix/macOs:

pip install potentials==0.2.0

potentials 0.1.12020-02-06T19:35:38Windows:

py -m pip install potentials==0.1.1

Unix/macOs:

pip install potentials==0.1.1

potentials 0.1.02020-02-04T15:07:46Windows:

py -m pip install potentials==0.1.0

Unix/macOs:

pip install potentials==0.1.0

potentials 0.0.12019-08-11T20:47:48Windows:

py -m pip install potentials==0.0.1

Unix/macOs:

pip install potentials==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_potentials_downloaded_file>

On Unix/macOs:

pip install <path_to_potentials_downloaded_file>


List distribution:


Project link:

- Homepage