- Author
- Peter Polidoro
- License
- BSD
https://github.com/janelia-experimental-technology/git_setup
The latest versions of most Debian-based GNU/Linux distributions come with Python 3.x out of the box.
guix install python
sudo apt install -y python3-venv twine
rm -rf venv
python3 -m venv venv
source venv/bin/activate
python setup.py install
python setup.py sdist bdist_wheel
twine upload dist/*
git clean -xdf
python setup.py install
python setup.py sdist bdist_wheel
twine upload dist/*
git clean -xdf
guix time-machine -C channels.scm -- shell -D -f guix.scm
python3 setup.py sdist bdist_wheel
twine upload dist/*
git clean -xdf
docker stop $(docker ps -aq)
docker system prune -f
docker build -t python_package_development:latest .
docker run -it --device=/dev/ttyACM0 python_package_development:latest
cd python_package
python setup.py install
ipython
# git commit ...
# git tag ...
python3 setup.py sdist bdist_wheel
twine upload dist/*
git clean -xdf