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

How to install tahoe-lafs via python pip




tahoe-lafs - secure, decentralized, fault-tolerant file store, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Intended Audience :: System Administrators
- License :: DFSG approved
- License :: OSI Approved :: GNU General Public License (GPL)
- License :: Other/Proprietary License
- Operating System :: MacOS :: MacOS X
- Operating System :: Unix
- Programming Language :: C
- Topic :: System
- Topic :: System :: Archiving
- Topic :: System :: Archiving :: Backup
- Topic :: System :: Archiving :: Mirroring
- Topic :: System :: Distributed Computing
- Topic :: System :: Filesystems
- Topic :: System :: Systems Administration

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



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_tahoe-lafs_env

- Active the virtual environment

test_tahoe-lafs_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_tahoe-lafs_env

- Active the virtual environment

source test_tahoe-lafs_env/bin/active


Step 2: OK, now, let flow below content to start the installation tahoe-lafs

To install tahoe-lafs on Windows(CMD):

py -m pip install tahoe-lafs

To install tahoe-lafs on Unix/macOs:

pip install tahoe-lafs


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

Example:

pip install tahoe-lafs==0


Please see the version list below table:

VersionReleased dateCommand
tahoe-lafs 1.17.12022-01-07T21:20:13Windows:

py -m pip install tahoe-lafs==1.17.1

Unix/macOs:

pip install tahoe-lafs==1.17.1

tahoe-lafs 1.17.02021-12-06T18:45:17Windows:

py -m pip install tahoe-lafs==1.17.0

Unix/macOs:

pip install tahoe-lafs==1.17.0

tahoe-lafs 1.16.02021-10-19T23:46:03Windows:

py -m pip install tahoe-lafs==1.16.0

Unix/macOs:

pip install tahoe-lafs==1.16.0

tahoe-lafs 1.15.12021-03-23T21:00:37Windows:

py -m pip install tahoe-lafs==1.15.1

Unix/macOs:

pip install tahoe-lafs==1.15.1

tahoe-lafs 1.14.02020-04-21T21:57:45Windows:

py -m pip install tahoe-lafs==1.14.0

Unix/macOs:

pip install tahoe-lafs==1.14.0

tahoe-lafs 1.13.02018-08-05T19:18:36Windows:

py -m pip install tahoe-lafs==1.13.0

Unix/macOs:

pip install tahoe-lafs==1.13.0

tahoe-lafs 1.12.12017-01-19T01:03:16Windows:

py -m pip install tahoe-lafs==1.12.1

Unix/macOs:

pip install tahoe-lafs==1.12.1

tahoe-lafs 1.12.02016-12-17T23:38:35Windows:

py -m pip install tahoe-lafs==1.12.0

Unix/macOs:

pip install tahoe-lafs==1.12.0

tahoe-lafs 1.11.02016-03-30T23:23:44Windows:

py -m pip install tahoe-lafs==1.11.0

Unix/macOs:

pip install tahoe-lafs==1.11.0

tahoe-lafs 02016-03-25T20:44:09Windows:

py -m pip install tahoe-lafs==0

Unix/macOs:

pip install tahoe-lafs==0


Step 4: Otherwise, you can install tahoe-lafs from local archives:

Download the distribution file from tahoe-lafs-1.17.1.tar.gz or the specific tahoe-lafs version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tahoe-lafs_downloaded_file>

On Unix/macOs:

pip install <path_to_tahoe-lafs_downloaded_file>


List distribution:


Project link:

- Homepage