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

How to install disko via python pip




disko - Discrete Sky Operator (DiSkO) Aperture Synthesis Radio Imaging, it belongs to Classifiers:

- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Communications
- Topic :: Communications :: Ham Radio
- Topic :: Scientific/Engineering

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



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_disko_env

- Active the virtual environment

test_disko_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_disko_env

- Active the virtual environment

source test_disko_env/bin/active


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

To install disko on Windows(CMD):

py -m pip install disko

To install disko on Unix/macOs:

pip install disko


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

Example:

pip install disko==0.4b1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand

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

Download the distribution file from disko-0.9.2b1.tar.gz or the specific disko version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_disko_downloaded_file>

On Unix/macOs:

pip install <path_to_disko_downloaded_file>


List distribution:

- disko-0.4b1.tar.gz
- disko-0.4b3.tar.gz
- disko-0.5.0b4.tar.gz
- disko-0.6.0b1.tar.gz
- disko-0.6.0b3.tar.gz
- disko-0.6.0b8.tar.gz
- disko-0.6.0b9.tar.gz
- disko-0.6.0b10.tar.gz
- disko-0.7.0b1.tar.gz
- disko-0.7.0b3.tar.gz
- disko-0.7.0b4.tar.gz
- disko-0.7.0b5.tar.gz
- disko-0.7.0b6.tar.gz
- disko-0.7.0b8.tar.gz
- disko-0.7.0b9.tar.gz
- disko-0.8.0b1.tar.gz
- disko-0.8.0b2.tar.gz
- disko-0.8.0b3.tar.gz
- disko-0.8.0b4.tar.gz
- disko-0.8.0b5.tar.gz
- disko-0.9.0b4.tar.gz
- disko-0.9.2b1.tar.gz
- disko-0.9.3b3.tar.gz
- disko-0.9.3b6.tar.gz
- disko-0.9.4b1.tar.gz
- disko-0.9.4b4.tar.gz


Project link:

- Homepage