- tworzenie - python -m venv modules
- lepiej używać python -m venv .venv bo niektóre IDE mają domyślnie zaszytą tę ścieżkę do szukania (VSCode)
- aktywacja - modules/Scripts/activate (lub .venv/bin/activate - uwaga pod Linukesm jest /bin/ a pod Windows /Scripts/)
- deaktywacja - modules/Scripts/deactivate
- zapamętanie pakietów - pip freeze >requirements.txt
- odtwarzanie pakietów - pip install -r requirements.txt
Finished installing Ubuntu 23.10? Wondering what's next? or are you A Long term Ubuntu user want to get rid of snap store from your installation? Well you're at the right place... follow these steps and get a Fast, more Secure & Reliable Ubuntu Desktop.
https://www.youtube.com/watch?v=4k_3iYqymRo
Chapters
- 00:00 Channel Intro
- 00:07 Title
- 00:49 GNOME 45 Improvements
Scenariusz:
- przenosimy Repo-A do Repo-B
- zachowujemy historię Repo-A w Repo-B
- usuwamy Repo-A
Kroki:
cd <Repo-B>
git remote add <Repo-A> https://github.com/<USER>/<Repo-A>.git
git fetch