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

How to install sc3nb via python pip




sc3nb - SuperCollider3 (sc3) for Python and Jupyter notebooks, it belongs to Classifiers:

- Framework :: IPython
- Framework :: Jupyter
- Intended Audience :: Education
- Intended Audience :: Information Technology
- Intended Audience :: Science/Research
- Programming Language :: Other
- Topic :: Artistic Software
- Topic :: Multimedia
- Topic :: Multimedia :: Sound/Audio
- Topic :: Multimedia :: Sound/Audio :: Analysis
- Topic :: Multimedia :: Sound/Audio :: Sound Synthesis
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Human Machine Interfaces
- Topic :: Scientific/Engineering :: Information Analysis
- Topic :: Scientific/Engineering :: Visualization
- Topic :: Software Development :: Libraries :: Python Modules

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



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_sc3nb_env

- Active the virtual environment

test_sc3nb_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_sc3nb_env

- Active the virtual environment

source test_sc3nb_env/bin/active


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

To install sc3nb on Windows(CMD):

py -m pip install sc3nb

To install sc3nb on Unix/macOs:

pip install sc3nb


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

Example:

pip install sc3nb==1.0.1


Please see the version list below table:

VersionReleased dateCommand
sc3nb 1.0.22021-11-10T11:54:22Windows:

py -m pip install sc3nb==1.0.2

Unix/macOs:

pip install sc3nb==1.0.2

sc3nb 1.0.12021-07-06T08:37:45Windows:

py -m pip install sc3nb==1.0.1

Unix/macOs:

pip install sc3nb==1.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sc3nb_downloaded_file>

On Unix/macOs:

pip install <path_to_sc3nb_downloaded_file>


List distribution:


Project link:

- Homepage
- Bug Tracker
- Documentation
- Source Code