PyCharm on Windows and Docker

I have recently started using Python and Docker. As a novice, I wanted to configure PyCharm on Windows to use my Docker Python image. Here are couple of things I had to do to successfully accomplish this: Your Project folder must be inside your Windows home folder, i.e. c:\users\user. If not, PyCharm will not be able to run your Python file Next, ensure that Docker is selected as a “Remote Python Interpreter”. Obviously as a …

Read morePyCharm on Windows and Docker

PyCharm & Git

Install Git for Windows first Using Git Bash, generate private and public keys Add public key to ~/.ssh/authorized_keys file on the remote server Create a local folder to store repository On server, create a new repository or initialize a repository from existing files cd some_dir git init git add . git commit In PyCharm, use ssh://vik@jarvis/~/code/jarvis/.git