How do I install Python 3.7 in google cloud shell

前端 未结 4 1221
栀梦
栀梦 2020-12-08 01:27

I have python 3.5 on my google cloud shell and want 3.7 so I can do command line debugging of code I am going to deploy via google cloud functions (and use 3.7 features such

4条回答
  •  盖世英雄少女心
    2020-12-08 01:54

    Another simple approach is

    sudo ``which conda`` install python=3.7 -y

    Obviously, I mean single backticks around which conda, but I can't remember how to escape backticks in github markdown.

    Slash escape is \supposed` to work, but doesn't`

    In

     tag:

    `Slash escape is \`supposed\` to work, but doesn't`

提交回复
热议问题