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

How to install moodle-inscribe via python pip




moodle-inscribe - Inscribe students into moodle courses by their email. Works with Moodle 3.9., it belongs to Classifiers:

- Intended Audience :: Education

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



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_moodle-inscribe_env

- Active the virtual environment

test_moodle-inscribe_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_moodle-inscribe_env

- Active the virtual environment

source test_moodle-inscribe_env/bin/active


Step 2: OK, now, let flow below content to start the installation moodle-inscribe

To install moodle-inscribe on Windows(CMD):

py -m pip install moodle-inscribe

To install moodle-inscribe on Unix/macOs:

pip install moodle-inscribe


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

Example:

pip install moodle-inscribe==3.9.0


Please see the version list below table:

VersionReleased dateCommand
moodle-inscribe 3.9.12021-03-15T09:59:02Windows:

py -m pip install moodle-inscribe==3.9.1

Unix/macOs:

pip install moodle-inscribe==3.9.1

moodle-inscribe 3.9.02021-03-07T21:34:18Windows:

py -m pip install moodle-inscribe==3.9.0

Unix/macOs:

pip install moodle-inscribe==3.9.0


Step 4: Otherwise, you can install moodle-inscribe from local archives:

Download the distribution file from moodle_inscribe-3.9.1.tar.gz or the specific moodle-inscribe version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_moodle-inscribe_downloaded_file>

On Unix/macOs:

pip install <path_to_moodle-inscribe_downloaded_file>


List distribution:

- moodle_inscribe-3.9.0-py2.py3-none-any.whl
- moodle_inscribe-3.9.0.tar.gz
- moodle_inscribe-3.9.1-py2.py3-none-any.whl
- moodle_inscribe-3.9.1.tar.gz


Project link:

- Homepage