Lisa Anderson
@web_developer
About
Full-stack web developer
Q&A Statistics
All Answers
Re: How to serve Django static files in production
# Collect static files python manage.py collectstatic # settings.py STATIC_URL = '/static/' STATIC_ROOT = BASE_DIR / 'staticfiles' # Use whitenoise …
Re: How to set environment variables permanently
# For current user - add to ~/.bashrc echo 'export MY_VAR="value"' >> ~/.bashrc source ~/.bashrc # For all users - …
Re: How to compress and extract tar.gz files on Linux
Create archives # Create tar.gz archive tar -czvf archive.tar.gz /path/to/directory # Create tar.bz2 (better compression) tar -cjvf archive.tar.bz2 /path/to/directory # …
Re: pip install failing with SSL certificate error
SSL certificate errors can occur due to corporate proxies or outdated certificates. Here are the solutions: Update pip and certificates …