A list of Python 3 programming projects ranging from Beginner to Advanced. A work in progress.
$ git status
$ git add -A
$ git commit -m "Updated README.md"
$ git push
It is recommended to run this program in a venv
environment. Assuming that has already been set up, you can create a venv
environment:
$ python3 -m venv plethora
Now you have to tell the system that you want to use this virtual environment, and you do that by activating it. To activate your brand new virtual environment you use the following command:
$ source plethora/bin/activate
(plethora) $ _
Once you're in, please run the following command:
(plethora) $ cat requirements.txt | xargs -n 1 pip install