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

How to install jupyterdrive via python pip




jupyterdrive - Integration of IPython/Jupyter with Google drive, it belongs to Classifiers:

- Framework :: IPython
- License :: OSI Approved :: BSD License
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4

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



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_jupyterdrive_env

- Active the virtual environment

test_jupyterdrive_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_jupyterdrive_env

- Active the virtual environment

source test_jupyterdrive_env/bin/active


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

To install jupyterdrive on Windows(CMD):

py -m pip install jupyterdrive

To install jupyterdrive on Unix/macOs:

pip install jupyterdrive


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

Example:

pip install jupyterdrive==0.0.1a1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
jupyterdrive 1.1.02015-03-20T23:37:35Windows:

py -m pip install jupyterdrive==1.1.0

Unix/macOs:

pip install jupyterdrive==1.1.0

jupyterdrive 1.0.02015-03-03T02:32:30Windows:

py -m pip install jupyterdrive==1.0.0

Unix/macOs:

pip install jupyterdrive==1.0.0

jupyterdrive 0.9.02015-02-03T14:07:04Windows:

py -m pip install jupyterdrive==0.9.0

Unix/macOs:

pip install jupyterdrive==0.9.0

jupyterdrive 0.0.22014-12-13T16:35:00Windows:

py -m pip install jupyterdrive==0.0.2

Unix/macOs:

pip install jupyterdrive==0.0.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_jupyterdrive_downloaded_file>

On Unix/macOs:

pip install <path_to_jupyterdrive_downloaded_file>


List distribution:

- jupyterdrive-0.0.1a1-py2.py3-none-any.whl
- jupyterdrive-0.0.1a1-py3-none-any.whl
- jupyterdrive-0.0.1a1.tar.gz
- jupyterdrive-0.0.1a2-py2-none-any.whl
- jupyterdrive-0.0.1a2.tar.gz
- jupyterdrive-0.0.1a3-py2-none-any.whl
- jupyterdrive-0.0.1a3.tar.gz
- jupyterdrive-0.0.1a4-py2.py3-none-any.whl
- jupyterdrive-0.0.1a4.tar.gz
- jupyterdrive-0.0.1a5-py3-none-any.whl
- jupyterdrive-0.0.1a5.tar.gz
- jupyterdrive-0.0.2-py3-none-any.whl
- jupyterdrive-0.0.2.tar.gz
- jupyterdrive-0.9.0-py2-none-any.whl
- jupyterdrive-0.9.0.tar.gz
- jupyterdrive-1.0.0-py2-none-any.whl
- jupyterdrive-1.0.0-py3-none-any.whl
- jupyterdrive-1.0.0.tar.gz
- jupyterdrive-1.1.0-py2-none-any.whl
- jupyterdrive-1.1.0-py3-none-any.whl
- jupyterdrive-1.1.0.tar.gz


Project link:

- Homepage