https://github.com/mgeier/python-audio
Some Jupyter notebooks about audio signal processing with Python
https://github.com/mgeier/python-audio
audio-signal-processing binder jupyter-notebook
Last synced: 24 days ago
JSON representation
Some Jupyter notebooks about audio signal processing with Python
- Host: GitHub
- URL: https://github.com/mgeier/python-audio
- Owner: mgeier
- License: cc0-1.0
- Created: 2013-10-05T14:27:23.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T14:44:30.000Z (6 months ago)
- Last Synced: 2025-03-28T08:08:50.505Z (about 1 month ago)
- Topics: audio-signal-processing, binder, jupyter-notebook
- Language: Jupyter Notebook
- Homepage: https://nbviewer.jupyter.org/github/mgeier/python-audio/
- Size: 16.8 MB
- Stars: 190
- Watchers: 19
- Forks: 49
- Open Issues: 1
-
Metadata Files:
- Readme: README-Debian.md
- License: LICENSE
- Audit: auditory-modeling/README
Awesome Lists containing this project
README
Some Notes Regarding Debian
===========================Create Debian Package from PyPI
-------------------------------Note: `sudo` must be installed and configured correctly
(maybe also fakeroot and python-all?).```
apt-get update
apt-get install python-stdeb python-all-dev
pypi-install name-of-package
```Replace `name-of-package` with the actual name of the PyPI package.
Create Debian Package with setuptools
-------------------------------------Create binary package:
```
python setup.py --command-packages=stdeb.command bdist_deb
```Create source package (and later a binary package):
```
python setup.py --command-packages=stdeb.command sdist_dsc
dpkg-buildpackage -rfakeroot -uc -us
```