This is a brand new site so content is lacking. You can help by adding content. Staff will add content over time.
Tips and Tricks
2 records in this category
-
Git is a powerful and widely used distributed version control system (VCS) essential for managing code projects. It allows you to track changes, collaborate effectively, and revert to previous versions if necessary. This guide will walk you through the straightforward process of installing Git on your Fedora Linux system. Prerequisites A Fedora Linux system with an active internet connection. Basic understanding of using the terminal. Administrative privileges (sudo access) on your system. Me
- 0 comments
- 93 views
-
So I use stuff that requires older versions of python, problem is newer distros comes with the newest version which at this moment is 3.13 and I need 3.11. The solution is simple. Run the following command to install any version. yay -S python311 python3.11 --version python3.11 -m venv env Replacing the version number with the one you need.
- 0 comments
- 83 views