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

How to install goofit via python pip




goofit - GooFit fitting package, it belongs to Classifiers:

- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Natural Language :: English
- Operating System :: Unix
- Programming Language :: C
- Programming Language :: C++
- Programming Language :: Python :: 2.7
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Physics

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



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_goofit_env

- Active the virtual environment

test_goofit_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_goofit_env

- Active the virtual environment

source test_goofit_env/bin/active


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

To install goofit on Windows(CMD):

py -m pip install goofit

To install goofit on Unix/macOs:

pip install goofit


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

Example:

pip install goofit==2.1.0.dev1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
goofit 2.2.32020-01-31T22:29:17Windows:

py -m pip install goofit==2.2.3

Unix/macOs:

pip install goofit==2.2.3

goofit 2.2.22019-02-01T12:03:25Windows:

py -m pip install goofit==2.2.2

Unix/macOs:

pip install goofit==2.2.2

goofit 2.2.12018-10-23T11:44:03Windows:

py -m pip install goofit==2.2.1

Unix/macOs:

pip install goofit==2.2.1

goofit 2.2.02018-07-31T12:41:52Windows:

py -m pip install goofit==2.2.0

Unix/macOs:

pip install goofit==2.2.0

goofit 2.1.32018-04-21T19:49:56Windows:

py -m pip install goofit==2.1.3

Unix/macOs:

pip install goofit==2.1.3

goofit 2.1.22018-03-12T14:22:51Windows:

py -m pip install goofit==2.1.2

Unix/macOs:

pip install goofit==2.1.2

goofit 2.1.12018-02-12T15:57:13Windows:

py -m pip install goofit==2.1.1

Unix/macOs:

pip install goofit==2.1.1

goofit 2.1.02017-12-08T14:20:40Windows:

py -m pip install goofit==2.1.0

Unix/macOs:

pip install goofit==2.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_goofit_downloaded_file>

On Unix/macOs:

pip install <path_to_goofit_downloaded_file>


List distribution:

- goofit-2.1.0.dev1.tar.gz
- goofit-2.1.0.dev2.tar.gz
- goofit-2.1.0.dev3.tar.gz
- goofit-2.1.0b1.tar.gz
- goofit-2.1.0b3.tar.gz
- goofit-2.1.0.tar.gz
- goofit-2.1.1.tar.gz
- goofit-2.1.2.tar.gz
- goofit-2.1.3.tar.gz
- goofit-2.2.0.tar.gz
- goofit-2.2.1.tar.gz
- goofit-2.2.2.tar.gz
- goofit-2.2.3.tar.gz
- goofit-2.3.0.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7)


Project link:

- Homepage