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

How to install SoundCard via python pip




SoundCard - Play and record audio without resorting to CPython extensions, it belongs to Classifiers:

- Topic :: Multimedia
- Topic :: Multimedia :: Sound/Audio
- Topic :: Multimedia :: Sound/Audio :: Capture/Recording
- Topic :: Multimedia :: Sound/Audio :: Players

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



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_SoundCard_env

- Active the virtual environment

test_SoundCard_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_SoundCard_env

- Active the virtual environment

source test_SoundCard_env/bin/active


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

To install SoundCard on Windows(CMD):

py -m pip install SoundCard

To install SoundCard on Unix/macOs:

pip install SoundCard


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

Example:

pip install SoundCard==0.1.0


Please see the version list below table:

VersionReleased dateCommand
SoundCard 0.4.22022-05-09T14:07:02Windows:

py -m pip install SoundCard==0.4.2

Unix/macOs:

pip install SoundCard==0.4.2

SoundCard 0.4.12021-03-14T12:41:39Windows:

py -m pip install SoundCard==0.4.1

Unix/macOs:

pip install SoundCard==0.4.1

SoundCard 0.4.02020-05-26T06:40:26Windows:

py -m pip install SoundCard==0.4.0

Unix/macOs:

pip install SoundCard==0.4.0

SoundCard 0.3.32019-10-08T08:26:12Windows:

py -m pip install SoundCard==0.3.3

Unix/macOs:

pip install SoundCard==0.3.3

SoundCard 0.3.22019-05-13T13:42:25Windows:

py -m pip install SoundCard==0.3.2

Unix/macOs:

pip install SoundCard==0.3.2

SoundCard 0.3.12019-04-29T08:33:50Windows:

py -m pip install SoundCard==0.3.1

Unix/macOs:

pip install SoundCard==0.3.1

SoundCard 0.3.02019-03-25T13:01:04Windows:

py -m pip install SoundCard==0.3.0

Unix/macOs:

pip install SoundCard==0.3.0

SoundCard 0.2.22018-11-29T11:11:07Windows:

py -m pip install SoundCard==0.2.2

Unix/macOs:

pip install SoundCard==0.2.2

SoundCard 0.2.12018-11-29T11:07:11Windows:

py -m pip install SoundCard==0.2.1

Unix/macOs:

pip install SoundCard==0.2.1

SoundCard 0.2.02018-10-16T14:55:17Windows:

py -m pip install SoundCard==0.2.0

Unix/macOs:

pip install SoundCard==0.2.0

SoundCard 0.1.22018-07-17T18:18:51Windows:

py -m pip install SoundCard==0.1.2

Unix/macOs:

pip install SoundCard==0.1.2

SoundCard 0.1.12017-10-25T10:43:06Windows:

py -m pip install SoundCard==0.1.1

Unix/macOs:

pip install SoundCard==0.1.1

SoundCard 0.1.02017-08-29T14:41:34Windows:

py -m pip install SoundCard==0.1.0

Unix/macOs:

pip install SoundCard==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_SoundCard_downloaded_file>

On Unix/macOs:

pip install <path_to_SoundCard_downloaded_file>


List distribution:


Project link:

- Homepage