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

How to install sharepy via python pip




sharepy - Simple SharePoint Online authentication for Python, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Internet

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



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_sharepy_env

- Active the virtual environment

test_sharepy_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_sharepy_env

- Active the virtual environment

source test_sharepy_env/bin/active


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

To install sharepy on Windows(CMD):

py -m pip install sharepy

To install sharepy on Unix/macOs:

pip install sharepy


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

Example:

pip install sharepy==1.1.2


Please see the version list below table:

VersionReleased dateCommand
sharepy 2.0.02022-02-05T05:13:42Windows:

py -m pip install sharepy==2.0.0

Unix/macOs:

pip install sharepy==2.0.0

sharepy 1.3.02018-06-27T21:11:37Windows:

py -m pip install sharepy==1.3.0

Unix/macOs:

pip install sharepy==1.3.0

sharepy 1.2.02018-02-23T09:19:04Windows:

py -m pip install sharepy==1.2.0

Unix/macOs:

pip install sharepy==1.2.0

sharepy 1.1.32017-11-08T11:39:59Windows:

py -m pip install sharepy==1.1.3

Unix/macOs:

pip install sharepy==1.1.3

sharepy 1.1.22017-11-07T02:42:22Windows:

py -m pip install sharepy==1.1.2

Unix/macOs:

pip install sharepy==1.1.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sharepy_downloaded_file>

On Unix/macOs:

pip install <path_to_sharepy_downloaded_file>


List distribution:


Project link:

- Homepage
- Issues