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

How to install bcloud via python pip




bcloud - Baidu Pan client for Linux Desktop users, it belongs to Classifiers:

- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Natural Language :: Chinese (Simplified)
- Natural Language :: Chinese (Traditional)
- Topic :: Communications
- Topic :: Communications :: File Sharing

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



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_bcloud_env

- Active the virtual environment

test_bcloud_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_bcloud_env

- Active the virtual environment

source test_bcloud_env/bin/active


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

To install bcloud on Windows(CMD):

py -m pip install bcloud

To install bcloud on Unix/macOs:

pip install bcloud


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

Example:

pip install bcloud==3.5.9


Please see the version list below table:

VersionReleased dateCommand
bcloud 3.8.22015-12-25T17:51:43Windows:

py -m pip install bcloud==3.8.2

Unix/macOs:

pip install bcloud==3.8.2

bcloud 3.8.12015-09-09T15:43:52Windows:

py -m pip install bcloud==3.8.1

Unix/macOs:

pip install bcloud==3.8.1

bcloud 3.7.22015-07-05T08:00:59Windows:

py -m pip install bcloud==3.7.2

Unix/macOs:

pip install bcloud==3.7.2

bcloud 3.7.12015-05-15T19:42:01Windows:

py -m pip install bcloud==3.7.1

Unix/macOs:

pip install bcloud==3.7.1

bcloud 3.6.12015-01-10T02:44:08Windows:

py -m pip install bcloud==3.6.1

Unix/macOs:

pip install bcloud==3.6.1

bcloud 3.5.102014-12-06T00:51:46Windows:

py -m pip install bcloud==3.5.10

Unix/macOs:

pip install bcloud==3.5.10

bcloud 3.5.92014-11-26T14:21:39Windows:

py -m pip install bcloud==3.5.9

Unix/macOs:

pip install bcloud==3.5.9


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_bcloud_downloaded_file>

On Unix/macOs:

pip install <path_to_bcloud_downloaded_file>


List distribution:

- bcloud-3.5.9.tar.gz
- bcloud-3.5.10.tar.gz
- bcloud-3.6.1.tar.gz
- bcloud-3.7.1.tar.gz
- bcloud-3.7.2.tar.gz
- bcloud-3.8.1.tar.gz
- bcloud-3.8.2.tar.gz


Project link:

- Homepage