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

How to install Eden via python pip




Eden - Eden - Event Driven Evaluation Nodes, tested with Kivy 1.9.0, it belongs to Classifiers:

- License :: Other/Proprietary License

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



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_Eden_env

- Active the virtual environment

test_Eden_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_Eden_env

- Active the virtual environment

source test_Eden_env/bin/active


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

To install Eden on Windows(CMD):

py -m pip install Eden

To install Eden on Unix/macOs:

pip install Eden


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

Example:

pip install Eden==2.1.5.-Kivy.TreeView.Drag.-.Drop.added-                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
Eden 2.1.142015-07-09T17:59:56Windows:

py -m pip install Eden==2.1.14

Unix/macOs:

pip install Eden==2.1.14

Eden 2.1.42014-10-30T17:17:32Windows:

py -m pip install Eden==2.1.4

Unix/macOs:

pip install Eden==2.1.4

Eden 2.1.32014-10-30T17:09:05Windows:

py -m pip install Eden==2.1.3

Unix/macOs:

pip install Eden==2.1.3

Eden 2.1.22014-10-30T16:56:18Windows:

py -m pip install Eden==2.1.2

Unix/macOs:

pip install Eden==2.1.2


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

Download the distribution file from Eden-2.1.14.zip or the specific Eden version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Eden_downloaded_file>

On Unix/macOs:

pip install <path_to_Eden_downloaded_file>


List distribution:

- Eden-2.1.5.-Kivy.TreeView.Drag.-.Drop.added-.zip
- Eden-2.1.5.-Kivy.TreeView.Drag-Drop.added-.testprogs.repaired-.zip
- Eden-2.1.6.-Kivy-.ListView.D-D.added-.preliminary.tutorials.added.-.zip
- Eden-2.1.6.-Kivy-.ListView.drag.drop.added-.preliminary.tutorials.added.-.zip
- Eden-2.1.7.Multipanel.persistent.splitters.added.-.tutorial.zip
- Eden-2.1.8.Tabbed.view.with.persistent.selection.and.hiding.of.pages..zip
- Eden-2.1.9.Modal.views.added-.div..bugs.fixed.zip
- Eden-2.1.10.Drop.down.menus.added.zip
- Eden-2.1.11.SwitchView-.checkbox-.radiobutton-.toggle.zip
- Eden-2.1.12.Local.menus-.unique.package.name-.many.bug.fixes.zip
- Eden-2.1.13.Modules-.demo.on.YouTube.zip
- Eden-2.1.2.zip
- Eden-2.1.3.zip
- Eden-2.1.4.zip
- Eden-2.1.14.zip


Project link:

- Homepage