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

How to install beam_integrals via python pip




beam_integrals - Console app and Python API for determining beam integrals of all 6 supported beam types, as described in D.D. Milasinovic, "The Finite Strip Method in Computational Mechanics" (ISBN 8680297194), it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- Intended Audience :: Science/Research
- License :: OSI Approved :: BSD License
- Programming Language :: Python :: 2.6
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Physics

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



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_beam_integrals_env

- Active the virtual environment

test_beam_integrals_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_beam_integrals_env

- Active the virtual environment

source test_beam_integrals_env/bin/active


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

To install beam_integrals on Windows(CMD):

py -m pip install beam_integrals

To install beam_integrals on Unix/macOs:

pip install beam_integrals


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

Example:

pip install beam_integrals==1.0.0


Please see the version list below table:

VersionReleased dateCommand
beam_integrals 1.1.22019-08-28T07:04:04Windows:

py -m pip install beam_integrals==1.1.2

Unix/macOs:

pip install beam_integrals==1.1.2

beam_integrals 1.1.12017-11-12T23:34:18Windows:

py -m pip install beam_integrals==1.1.1

Unix/macOs:

pip install beam_integrals==1.1.1

beam_integrals 1.1.02015-10-06T23:40:53Windows:

py -m pip install beam_integrals==1.1.0

Unix/macOs:

pip install beam_integrals==1.1.0

beam_integrals 1.0.02015-09-03T18:38:39Windows:

py -m pip install beam_integrals==1.0.0

Unix/macOs:

pip install beam_integrals==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_beam_integrals_downloaded_file>

On Unix/macOs:

pip install <path_to_beam_integrals_downloaded_file>


List distribution:

- beam_integrals-1.0.0.zip
- beam_integrals-1.1.0.zip
- beam_integrals-1.1.1.tar.gz
- beam_integrals-1.1.2-py2-none-any.whl
- beam_integrals-1.1.2.tar.gz


Project link:

- Homepage