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

How to install burnman via python pip




burnman - A thermoelastic and thermodynamic toolkit for Earth and planetary sciences, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)

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



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_burnman_env

- Active the virtual environment

test_burnman_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_burnman_env

- Active the virtual environment

source test_burnman_env/bin/active


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

To install burnman on Windows(CMD):

py -m pip install burnman

To install burnman on Unix/macOs:

pip install burnman


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

Example:

pip install burnman==0.6b2                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
burnman 1.0.12021-10-06T13:48:11Windows:

py -m pip install burnman==1.0.1

Unix/macOs:

pip install burnman==1.0.1

burnman 1.0.02021-10-06T12:41:49Windows:

py -m pip install burnman==1.0.0

Unix/macOs:

pip install burnman==1.0.0

burnman 0.10.02021-08-02T22:45:32Windows:

py -m pip install burnman==0.10.0

Unix/macOs:

pip install burnman==0.10.0

burnman 0.9.02016-04-24T19:22:25Windows:

py -m pip install burnman==0.9.0

Unix/macOs:

pip install burnman==0.9.0

burnman 0.72014-06-24T19:58:05Windows:

py -m pip install burnman==0.7

Unix/macOs:

pip install burnman==0.7


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_burnman_downloaded_file>

On Unix/macOs:

pip install <path_to_burnman_downloaded_file>


List distribution:

- burnman-0.6b2.tar.gz
- burnman-0.6b3.tar.gz
- burnman-0.7rc1.tar.gz
- burnman-0.7.tar.gz
- burnman-0.8b2.tar.gz
- burnman-0.8b3.tar.gz
- burnman-0.9.0.tar.gz
- burnman-0.10.0-py3-none-any.whl
- burnman-0.10.0.tar.gz
- burnman-1.0.0-py3-none-any.whl
- burnman-1.0.0.tar.gz
- burnman-1.0.1-py3-none-any.whl
- burnman-1.0.1.tar.gz
- burnman-1.1.0-py3-none-any.whl
- burnman-1.1.0.tar.gz


Project link:

- Homepage