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

How to install lfm via python pip




lfm - Last File Manager is a powerful file manager for the UNIX console., it belongs to Classifiers:

- Environment :: Console :: Curses
- Intended Audience :: End Users/Desktop
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Topic :: Desktop Environment
- Topic :: Desktop Environment :: File Managers
- Topic :: System
- Topic :: System :: Filesystems
- Topic :: System :: Shells
- Topic :: System :: System Shells

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



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_lfm_env

- Active the virtual environment

test_lfm_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_lfm_env

- Active the virtual environment

source test_lfm_env/bin/active


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

To install lfm on Windows(CMD):

py -m pip install lfm

To install lfm on Unix/macOs:

pip install lfm


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

Example:

pip install lfm==0.9


Please see the version list below table:

VersionReleased dateCommand
lfm 3.12017-06-25T17:13:14Windows:

py -m pip install lfm==3.1

Unix/macOs:

pip install lfm==3.1

lfm 3.02015-10-23T18:59:00Windows:

py -m pip install lfm==3.0

Unix/macOs:

pip install lfm==3.0

lfm 2.32011-05-21T11:06:57Windows:

py -m pip install lfm==2.3

Unix/macOs:

pip install lfm==2.3

lfm 2.22010-05-22T10:20:09Windows:

py -m pip install lfm==2.2

Unix/macOs:

pip install lfm==2.2

lfm 2.12009-03-15T08:20:31Windows:

py -m pip install lfm==2.1

Unix/macOs:

pip install lfm==2.1

lfm 2.02007-09-03T22:22:17Windows:

py -m pip install lfm==2.0

Unix/macOs:

pip install lfm==2.0

lfm 0.912004-07-03T11:14:18Windows:

py -m pip install lfm==0.91

Unix/macOs:

pip install lfm==0.91

lfm 0.92003-02-24T12:05:03Windows:

py -m pip install lfm==0.9

Unix/macOs:

pip install lfm==0.9


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_lfm_downloaded_file>

On Unix/macOs:

pip install <path_to_lfm_downloaded_file>


List distribution:

- lfm-2.0.tar.gz
- lfm-2.2.tar.gz
- lfm-2.3.tar.gz
- lfm-3.0.1.tar.gz
- lfm-3.1.tar.gz


Project link:

- Homepage
- Download