Django is a Python framework. You can find more info at https://www.djangoproject.com Django Tutorials https://realpython.com/tutorials/django/ Create … Django FrameworkRead more
Python
Install jupyter notebook
To install jupyter notebook on Ubuntu run pip install jupyter To start jupyter notebook, create an … Install jupyter notebookRead more
Install virtualenv on Ubuntu
To install virtualenv on Ubuntu, run sudo apt install virtualenv
virtualenv
virtualenv is used to create isolated python environments. With python3, you can create virtualenv with command … virtualenvRead more
Creating and using virtualenv
To create a virtualenv, run virtualenv NAME_OF_VIRTUALENV On Ubuntu 18, this command will create virtualenv with … Creating and using virtualenvRead more
Running Web Server with python SimpleHTTPServer
SimpleHTTPServer is a python module that allow you to run web server for static files. To … Running Web Server with python SimpleHTTPServerRead more
Getting started with Django Framework
Django is a python framework for developing web applications. To install Django, run pip install django … Getting started with Django FrameworkRead more
Installing PyCharm Community Edition on Ubuntu
PyCharm Community Edition is a free python editor from JetBrains. You can download it from https://www.jetbrains.com/pycharm/download/#section=linux … Installing PyCharm Community Edition on UbuntuRead more
Running Python Application with gunicorn and nginx
Create a service file for gunicorn root@django:~# cat /etc/systemd/system/gunicorn2.service [Unit] Description=gunicorn2 daemon Requires=gunicorn2.socket After=network.target [Service] User=ubuntu … Running Python Application with gunicorn and nginxRead more
pip install mysqlclient mysql_config: not found
On Ubuntu 18.04, when i install mysqlclient python module, I get error (venv) boby@sok-01:~/Downloads/django-deploy$ pip install … pip install mysqlclient mysql_config: not foundRead more