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

How to install gridsync via python pip




gridsync - Synchronize local directories with Tahoe-LAFS storage grids., it belongs to Classifiers:

- Environment :: MacOS X
- Environment :: Win32 (MS Windows)
- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- Environment :: X11 Applications :: Gnome
- Environment :: X11 Applications :: KDE
- Environment :: X11 Applications :: Qt
- Intended Audience :: End Users/Desktop
- License :: DFSG approved
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Communications
- Topic :: Communications :: File Sharing
- Topic :: Desktop Environment
- Topic :: Security
- Topic :: Security :: Cryptography
- Topic :: System :: Archiving
- Topic :: System :: Distributed Computing
- Topic :: System :: Filesystems
- Topic :: System :: Recovery Tools
- Topic :: Utilities

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



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_gridsync_env

- Active the virtual environment

test_gridsync_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_gridsync_env

- Active the virtual environment

source test_gridsync_env/bin/active


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

To install gridsync on Windows(CMD):

py -m pip install gridsync

To install gridsync on Unix/macOs:

pip install gridsync


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

Example:

pip install gridsync==0.3.2


Please see the version list below table:

VersionReleased dateCommand
gridsync 0.4.32020-07-25T00:41:46Windows:

py -m pip install gridsync==0.4.3

Unix/macOs:

pip install gridsync==0.4.3

gridsync 0.4.22019-04-06T19:13:23Windows:

py -m pip install gridsync==0.4.2

Unix/macOs:

pip install gridsync==0.4.2

gridsync 0.4.12019-03-13T03:10:17Windows:

py -m pip install gridsync==0.4.1

Unix/macOs:

pip install gridsync==0.4.1

gridsync 0.4.02019-01-12T05:06:58Windows:

py -m pip install gridsync==0.4.0

Unix/macOs:

pip install gridsync==0.4.0

gridsync 0.3.22018-04-17T20:12:43Windows:

py -m pip install gridsync==0.3.2

Unix/macOs:

pip install gridsync==0.3.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gridsync_downloaded_file>

On Unix/macOs:

pip install <path_to_gridsync_downloaded_file>


List distribution:

- gridsync-0.3.2-py3-none-any.whl
- gridsync-0.3.2.tar.gz
- gridsync-0.4.0-py3-none-any.whl
- gridsync-0.4.0.tar.gz
- gridsync-0.4.1-py3-none-any.whl
- gridsync-0.4.1.tar.gz
- gridsync-0.4.2-py3-none-any.whl
- gridsync-0.4.2.tar.gz
- gridsync-0.4.3-py3-none-any.whl (python version >=3.6, <3.9)
- gridsync-0.4.3.tar.gz (python version >=3.6, <3.9)


Project link:

- Homepage