Installing PyCharm Community Edition on Ubuntu

pycharm python editor

PyCharm Community Edition is a free python editor from JetBrains. You can download it from https://www.jetbrains.com/pycharm/download/#section=linux Download and extact the tar.gz file. Move it to a folder like tar xvf pycharm-community-2019.1.3.tar.gz mkdir ~/programs mv pycharm-community-2019.1.3 ~/programs Execute sartup script cd ~/programs/pycharm-community-2019.1.3/bin ./pycharm.sh Once pycharm started, you can go to Tools menu and create a startup … Read more

Create Python Flask Docker Container

Create a folder and change to the folder mkdir python-flask cd python-flask Create file vi Dockerfile Add following content FROM python:2.7-slim WORKDIR /app COPY . /app RUN pip install -r requirements.txt EXPOSE 8080 CMD [“python”, “app.py”] Create file requirements.txt, add “Flask” to it. echo “Flask” > requirments.txt Now lets create our Python Flask Application vi … Read more