Update: The contents of this Gist have moved to a repo here
Update: The contents of this Gist have moved to a repo here
A beginner's guide
This guide covers how to install and upgrade Python 3 and how to create and an install into a Python virtual environment.
This is best practice in Python for both local and production code, as it isolates the scope where your python
commands and pip
commands run, protecting your global environment and allowing your to manage multiple virtual environments each with their own set of unique Python packages.
#!/usr/bin/env python3 | |
""" | |
Pip freeze alternative. | |
Show exact versions of Python packages in a virtual environment, matching | |
ONLY libraries named in the requirements file, in order to give a shorter version | |
of pip freeze output. | |
The logic in this script: | |
- requirements.txt doesn't always have versions or exact versions it. |
How to install Ruby, Bundler and Jekyll at the user level
See also instructions for project-level Jekyll.
Links:
- Ruby - ruby-lang.org
- Bundler - bundler.io
- Jekyll - jekyllrb.com
Serve a docs site locally with DocsifyJS
Choose an option below depending on whether you want to install and run Docsify CLI (optional), or use another server. Either way, you serve the docs
directory.
Docsify CLI
- Install NodeJS.
- Install Docsify CLI
How to install Python 3
Links:
- Python homepage
- Python docs
How to install:
To learn more about how to use Docsify to make a light Markdown-based docs site, see: