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

How to install freeart via python pip




freeart - Software library for X-Ray data analysis, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Environment :: Console
- Environment :: MacOS X
- Environment :: Win32 (MS Windows)
- Environment :: X11 Applications
- Environment :: X11 Applications :: Qt
- Intended Audience :: Education
- Intended Audience :: Science/Research
- Natural Language :: English
- Operating System :: MacOS
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Programming Language :: C
- Programming Language :: Cython
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython

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



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_freeart_env

- Active the virtual environment

test_freeart_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_freeart_env

- Active the virtual environment

source test_freeart_env/bin/active


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

To install freeart on Windows(CMD):

py -m pip install freeart

To install freeart on Unix/macOs:

pip install freeart


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

Example:

pip install freeart==3.2.0


Please see the version list below table:

VersionReleased dateCommand
freeart 3.3.12021-06-18T08:21:39Windows:

py -m pip install freeart==3.3.1

Unix/macOs:

pip install freeart==3.3.1

freeart 3.3.02018-09-13T09:03:26Windows:

py -m pip install freeart==3.3.0

Unix/macOs:

pip install freeart==3.3.0

freeart 3.2.12018-04-05T14:05:03Windows:

py -m pip install freeart==3.2.1

Unix/macOs:

pip install freeart==3.2.1

freeart 3.2.02018-04-05T12:24:03Windows:

py -m pip install freeart==3.2.0

Unix/macOs:

pip install freeart==3.2.0


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

Download the distribution file from freeart-3.3.1.linux-x86_64.tar.gz or the specific freeart version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_freeart_downloaded_file>

On Unix/macOs:

pip install <path_to_freeart_downloaded_file>


List distribution:

- freeart-3.2.1-cp27-cp27m-macosx_10_6_intel.whl
- freeart-3.2.1-cp27-cp27m-win_amd64.whl
- freeart-3.2.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
- freeart-3.2.1-cp36-cp36m-win_amd64.whl
- freeart-3.2.1.tar.gz
- freeart-3.3.0-cp27-cp27m-macosx_10_6_intel.whl
- freeart-3.3.0-cp27-cp27m-win_amd64.whl
- freeart-3.3.0-cp35-cp35m-win_amd64.whl
- freeart-3.3.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
- freeart-3.3.0-cp36-cp36m-win_amd64.whl
- freeart-3.3.0-cp37-cp37m-win_amd64.whl
- freeart-3.3.0.tar.gz
- freeart-3.3.1.linux-x86_64.tar.gz


Project link:

- Homepage