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

How to install nengo-ocl via python pip




nengo-ocl - OpenCL-based simulator for Nengo neural models, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Framework :: Nengo
- Intended Audience :: Science/Research
- License :: Free for non-commercial use
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Artificial Intelligence

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



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_nengo-ocl_env

- Active the virtual environment

test_nengo-ocl_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_nengo-ocl_env

- Active the virtual environment

source test_nengo-ocl_env/bin/active


Step 2: OK, now, let flow below content to start the installation nengo-ocl

To install nengo-ocl on Windows(CMD):

py -m pip install nengo-ocl

To install nengo-ocl on Unix/macOs:

pip install nengo-ocl


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

Example:

pip install nengo-ocl==0.1.0


Please see the version list below table:

VersionReleased dateCommand
nengo-ocl 2.1.02020-11-23T21:03:15Windows:

py -m pip install nengo-ocl==2.1.0

Unix/macOs:

pip install nengo-ocl==2.1.0

nengo-ocl 2.0.02020-09-04T17:07:19Windows:

py -m pip install nengo-ocl==2.0.0

Unix/macOs:

pip install nengo-ocl==2.0.0

nengo-ocl 1.4.02018-07-05T00:09:27Windows:

py -m pip install nengo-ocl==1.4.0

Unix/macOs:

pip install nengo-ocl==1.4.0

nengo-ocl 1.3.02018-03-28T15:11:49Windows:

py -m pip install nengo-ocl==1.3.0

Unix/macOs:

pip install nengo-ocl==1.3.0

nengo-ocl 1.2.02018-03-28T15:10:34Windows:

py -m pip install nengo-ocl==1.2.0

Unix/macOs:

pip install nengo-ocl==1.2.0

nengo-ocl 1.1.02018-03-28T15:09:37Windows:

py -m pip install nengo-ocl==1.1.0

Unix/macOs:

pip install nengo-ocl==1.1.0

nengo-ocl 1.0.02018-03-28T15:08:59Windows:

py -m pip install nengo-ocl==1.0.0

Unix/macOs:

pip install nengo-ocl==1.0.0

nengo-ocl 0.1.02018-03-28T15:08:05Windows:

py -m pip install nengo-ocl==0.1.0

Unix/macOs:

pip install nengo-ocl==0.1.0


Step 4: Otherwise, you can install nengo-ocl from local archives:

Download the distribution file from nengo-ocl-2.1.0.tar.gz or the specific nengo-ocl version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_nengo-ocl_downloaded_file>

On Unix/macOs:

pip install <path_to_nengo-ocl_downloaded_file>


List distribution:

- nengo-ocl-0.1.0.tar.gz
- nengo-ocl-1.0.0.tar.gz
- nengo-ocl-1.1.0.tar.gz
- nengo-ocl-1.2.0.tar.gz
- nengo_ocl-1.2.0-1-py2.py3-none-any.whl
- nengo-ocl-1.3.0.tar.gz
- nengo_ocl-1.3.0-1-py2.py3-none-any.whl
- nengo-ocl-1.4.0.tar.gz
- nengo_ocl-1.4.0-py2.py3-none-any.whl
- nengo-ocl-2.0.0.tar.gz (python version >=3.5)
- nengo_ocl-2.0.0-py3-none-any.whl (python version >=3.5)
- nengo-ocl-2.1.0.tar.gz (python version >=3.5)
- nengo_ocl-2.1.0-py3-none-any.whl (python version >=3.5)


Project link:

- Homepage