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

How to install edrixs via python pip




edrixs - An open source toolkit for simulating RIXS spectra based on ED, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha

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



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_edrixs_env

- Active the virtual environment

test_edrixs_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_edrixs_env

- Active the virtual environment

source test_edrixs_env/bin/active


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

To install edrixs on Windows(CMD):

py -m pip install edrixs

To install edrixs on Unix/macOs:

pip install edrixs


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

Example:

pip install edrixs==0.0.1


Please see the version list below table:

VersionReleased dateCommand
edrixs 0.0.72020-09-18T17:42:58Windows:

py -m pip install edrixs==0.0.7

Unix/macOs:

pip install edrixs==0.0.7

edrixs 0.0.62020-07-09T03:01:44Windows:

py -m pip install edrixs==0.0.6

Unix/macOs:

pip install edrixs==0.0.6

edrixs 0.0.52020-06-03T09:57:59Windows:

py -m pip install edrixs==0.0.5

Unix/macOs:

pip install edrixs==0.0.5

edrixs 0.0.42019-07-01T19:08:28Windows:

py -m pip install edrixs==0.0.4

Unix/macOs:

pip install edrixs==0.0.4

edrixs 0.0.32019-06-28T18:42:21Windows:

py -m pip install edrixs==0.0.3

Unix/macOs:

pip install edrixs==0.0.3

edrixs 0.0.12019-05-15T21:15:01Windows:

py -m pip install edrixs==0.0.1

Unix/macOs:

pip install edrixs==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_edrixs_downloaded_file>

On Unix/macOs:

pip install <path_to_edrixs_downloaded_file>


List distribution:

- edrixs-0.0.1-cp36-cp36m-manylinux1_x86_64.whl
- edrixs-0.0.1.tar.gz
- edrixs-0.0.3.tar.gz
- edrixs-0.0.4.tar.gz
- edrixs-0.0.5-cp36-cp36m-manylinux1_x86_64.whl
- edrixs-0.0.5.tar.gz
- edrixs-0.0.6-cp36-cp36m-manylinux1_x86_64.whl
- edrixs-0.0.6.tar.gz
- edrixs-0.0.7.tar.gz
- edrixs-0.0.8.tar.gz


Project link:

- Homepage