You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install pythonbits: pipx install pythonbits (current release) pipx install git+https://github.com/mueslo/pythonbits.git@master (e.g. latest master dev version, at your own risk)
Basic virtualenv
🛠️ Recommended for development purposes 🧙♂️
Install virtual environments, which will keep different python projects separated and prevent dependency conflicts: sudo apt install python3-venv (Debian/Ubuntu)
Create a virtual environment for pythonbits: python3 -m venv pythonbits
Activate the virtual environment: source pythonbits/bin/activate
Remember that you need to activate the virtualenv again the next time you open a console and wish to run pythonbits.
No virtualenv ⚠️ NOT RECOMMENDED ☠️
Other things you install may conflict with pythonbits's requirements. Only use this if this is the only python package you will be installing. pip install --user pythonbits