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

How to install freesurfer-stats via python pip




freesurfer-stats - Python Library to Read FreeSurfer's cortical parcellation anatomical statistics, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Healthcare Industry
- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Programming Language :: Python :: 3.5
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Information Analysis
- Topic :: Scientific/Engineering :: Medical Science Apps.
- Topic :: Utilities

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



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_freesurfer-stats_env

- Active the virtual environment

test_freesurfer-stats_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_freesurfer-stats_env

- Active the virtual environment

source test_freesurfer-stats_env/bin/active


Step 2: OK, now, let flow below content to start the installation freesurfer-stats

To install freesurfer-stats on Windows(CMD):

py -m pip install freesurfer-stats

To install freesurfer-stats on Unix/macOs:

pip install freesurfer-stats


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

Example:

pip install freesurfer-stats==1.0.0


Please see the version list below table:

VersionReleased dateCommand
freesurfer-stats 1.2.12020-12-31T16:04:39Windows:

py -m pip install freesurfer-stats==1.2.1

Unix/macOs:

pip install freesurfer-stats==1.2.1

freesurfer-stats 1.2.02020-05-30T17:45:47Windows:

py -m pip install freesurfer-stats==1.2.0

Unix/macOs:

pip install freesurfer-stats==1.2.0

freesurfer-stats 1.1.12020-05-06T22:22:05Windows:

py -m pip install freesurfer-stats==1.1.1

Unix/macOs:

pip install freesurfer-stats==1.1.1

freesurfer-stats 1.1.02020-05-06T16:24:22Windows:

py -m pip install freesurfer-stats==1.1.0

Unix/macOs:

pip install freesurfer-stats==1.1.0

freesurfer-stats 1.0.02019-06-27T08:33:02Windows:

py -m pip install freesurfer-stats==1.0.0

Unix/macOs:

pip install freesurfer-stats==1.0.0


Step 4: Otherwise, you can install freesurfer-stats from local archives:

Download the distribution file from freesurfer-stats-1.2.1.tar.gz or the specific freesurfer-stats version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_freesurfer-stats_downloaded_file>

On Unix/macOs:

pip install <path_to_freesurfer-stats_downloaded_file>


List distribution:

- freesurfer-stats-1.0.0.tar.gz
- freesurfer_stats-1.0.0-py3-none-any.whl
- freesurfer-stats-1.1.0.tar.gz
- freesurfer_stats-1.1.0-py3-none-any.whl
- freesurfer-stats-1.1.1.tar.gz
- freesurfer_stats-1.1.1-py3-none-any.whl
- freesurfer-stats-1.2.0.tar.gz
- freesurfer_stats-1.2.0-py3-none-any.whl
- freesurfer-stats-1.2.1.tar.gz
- freesurfer_stats-1.2.1-py3-none-any.whl


Project link:

- Homepage