A collection of python3 libraries.
Clone or download the repository.
git clone https://github.com/zzjjzzgggg/python_packages.gitNow you can selectively install each individual library. For example, to install
package iotools, run the following command.
pip3 install -e iotoolsThis will install the package with a symlink, so that changes to the source file will be immediately available to other users of the package on our system.
Alternatively, you can also install each package by python setup.py install, e.g.,
cd myutils
python setup.py install